We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ca0c6 commit 9702a28Copy full SHA for 9702a28
Sources/LanguageServerProtocol/Requests/TextDocumentContentRequest.swift
@@ -28,7 +28,11 @@ public struct TextDocumentContentRequest: RequestType {
28
}
29
30
31
-/// Response containing `text` of `TextDocumentContentRequest`
+/// Response containing the content of the requested text document.
32
+///
33
+/// Please note, that the content of any subsequent open notifications for the
34
+/// text document might differ from the returned content due to whitespace and
35
+/// line ending normalizations done on the client.
36
public struct TextDocumentContentResponse: ResponseType {
37
public var text: String
38
0 commit comments