aboutsummaryrefslogtreecommitdiff
path: root/src/server/documents.odin
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-10-25 00:02:21 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2022-10-25 00:02:21 +0200
commit83c61f4f5f439b476855a3f5ca7e49c6ac0df465 (patch)
treeaeba655772843960a2e660256b2a0875246cf2e3 /src/server/documents.odin
parented1a43af18f4cce0cbe18b59e3265a9b495a381f (diff)
Improve smenatic token for distinct typing
Diffstat (limited to 'src/server/documents.odin')
-rw-r--r--src/server/documents.odin2
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
}