diff options
| author | Daniel Gavin <danielgavin5@hotmail.com> | 2022-10-25 00:02:21 +0200 |
|---|---|---|
| committer | Daniel Gavin <danielgavin5@hotmail.com> | 2022-10-25 00:02:21 +0200 |
| commit | 83c61f4f5f439b476855a3f5ca7e49c6ac0df465 (patch) | |
| tree | aeba655772843960a2e660256b2a0875246cf2e3 /src/server/documents.odin | |
| parent | ed1a43af18f4cce0cbe18b59e3265a9b495a381f (diff) | |
Improve smenatic token for distinct typing
Diffstat (limited to 'src/server/documents.odin')
| -rw-r--r-- | src/server/documents.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/documents.odin b/src/server/documents.odin index 65b176e..5adfdfb 100644 --- a/src/server/documents.odin +++ b/src/server/documents.odin @@ -456,7 +456,7 @@ parse_imports :: proc(document: ^Document, config: ^common.Config) { //collection specified if i := strings.index(imp.fullpath, ":"); - i != -1 && i > 1 && i < len(imp.fullpath) - 1 { + i != -1 && i > 1 && i < len(imp.fullpath) - 1 { if len(imp.fullpath) < 2 { continue } |