소스 검색

Fix docstring in model

Edward Zhao 5 년 전
부모
커밋
ca2e6b6fcf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/completer/src/model.ts

+ 1 - 1
packages/completer/src/model.ts

@@ -393,7 +393,7 @@ export class CompleterModel implements Completer.IModel {
     let items = JSONExt.deepCopy(this._completionItems.items);
     let results: CompletionHandler.ICompletionItem[] = [];
     for (let item of items) {
-      // See if insert text matches query string
+      // See if label matches query string
       let match = StringExt.matchSumOfSquares(item.label, query);
       if (match) {
         // Highlight label text if there's a match