os.nim: proper indentation

This commit is contained in:
Araq
2019-04-01 17:45:08 +02:00
parent c3067e36bb
commit 204ecfc817

View File

@@ -501,7 +501,7 @@ proc splitFile*(path: string): tuple[dir, name, ext: string] {.
assert ext == ""
if path.len == 0:
result = ("", "", "")
result = ("", "", "")
elif path[^1] in {DirSep, AltSep}:
if path.len == 1:
# issue #8255