Skip to content

Commit a17b817

Browse files
committed
DOCS: fixed typo
1 parent 3723453 commit a17b817

File tree

1 file changed

+1
-1
lines changed
  • packages/yasqe/src/autocompleters

1 file changed

+1
-1
lines changed

Diff for: packages/yasqe/src/autocompleters/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { take } from "lodash-es";
66
const CodeMirror = require("codemirror");
77
require("./show-hint.scss");
88
export class CompleterConfig {
9-
onInitialize?: (this: CompleterConfig, yasqe: Yasqe) => void; //allows for e.g. registering event listeners in yasqe, like the prefix autocompleter does
9+
onInitialize?: (this: CompleterConfig, yasqe: Yasqe) => void; //allows for e.g. registering event listeners in yasqe, like the prefix auto-completer does
1010
isValidCompletionPosition: (yasqe: Yasqe) => boolean;
1111
get: (yasqe: Yasqe, token?: AutocompletionToken) => Promise<string[]> | string[];
1212
preProcessToken?: (yasqe: Yasqe, token: Token) => AutocompletionToken;

0 commit comments

Comments
 (0)