Skip to content

Commit 55318a6

Browse files
committedApr 17, 2024
👨‍💻 Improve wording in error output
1 parent a38d583 commit 55318a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class JoSk {
6262

6363
for (let i = adapterMethods.length - 1; i >= 0; i--) {
6464
if (typeof this.adapter[adapterMethods[i]] !== 'function') {
65-
throw new Error(`{adapter} is missing {${adapterMethods[i]}} method that is required!`);
65+
throw new Error(`{adapter} instance is missing {${adapterMethods[i]}} method that is required!`);
6666
}
6767
}
6868

0 commit comments

Comments
 (0)
Please sign in to comment.