diff options
Diffstat (limited to 'lsp-write.c')
-rw-r--r-- | lsp-write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lsp-write.c b/lsp-write.c index 4409593..79c1dd9 100644 --- a/lsp-write.c +++ b/lsp-write.c @@ -192,7 +192,7 @@ static void write_file_uri(JSONWriter *o, LSPDocumentID document) { for (const char *p = path; *p; ++p) { char c = *p; #if _WIN32 - // i think file URIs have to use slashes? + // file URIs use slashes: https://en.wikipedia.org/wiki/File_URI_scheme if (c == '\\') c = '/'; #endif |