From ef6d32f97cde16aba84d96dc806c4439eaf8efae Mon Sep 17 00:00:00 2001 From: Colin Harman Date: Sun, 26 Sep 2021 09:33:23 -0500 Subject: [PATCH] Typescript declaration file typo fix. (#284) --- src/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.d.ts b/src/index.d.ts index 6e29ef6..71c2bdb 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -53,7 +53,7 @@ declare class DataLoader { clearAll(): this; /** - * Adds the provied key and value to the cache. If the key already exists, no + * Adds the provided key and value to the cache. If the key already exists, no * change is made. Returns itself for method chaining. */ prime(key: K, value: V | Error): this;