You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: analyses/org.eclipse.tracecompass.incubator.filters.core/src/org/eclipse/tracecompass/incubator/internal/filters/core/client/LanguageFilterClient.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@
46
46
/**
47
47
* The LanguageFilterClient implementation for the FilterBox
48
48
*
49
-
* See LSP specifications for more informations.
49
+
* See LSP specifications for more information.
50
50
*
51
51
* @author Maxime Thibault
52
52
*
@@ -97,7 +97,7 @@ public void publishDiagnostics(PublishDiagnosticsParams diagnostics) {
97
97
98
98
/**
99
99
* Task to ask the server for autocompletion hints. Then update the dropdown
100
-
* sugestions
100
+
* suggestions
101
101
*
102
102
* @param uri
103
103
* For a text document this would be a path to the file. In order
@@ -180,7 +180,7 @@ public void register(@NonNull LspObserver obs) {
180
180
}
181
181
182
182
/**
183
-
* Tell the server that the document at uri has been open
183
+
* Tell the server that the document at uri has been opened
184
184
*
185
185
* @param uri
186
186
*/
@@ -193,7 +193,7 @@ public void tellDidOpen(String uri) {
193
193
}
194
194
195
195
/**
196
-
* Tell the server that the document at uri as change.
196
+
* Tell the server that the document at uri has changed.
197
197
*
198
198
* @param uri
199
199
* @param input
@@ -211,7 +211,7 @@ public void tellDidChange(String uri, String input, int cursorPos) {
211
211
Positionp1 = newPosition(0, min);
212
212
Positionp2 = newPosition(0, max);
213
213
Ranger = newRange(p1, p2);
214
-
TextDocumentContentChangeEventchange = newTextDocumentContentChangeEvent(r, max + 1, input);
0 commit comments