From 204ecfc817e135113f8a00455f56944f9a39bab1 Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 1 Apr 2019 17:45:08 +0200 Subject: [PATCH] os.nim: proper indentation --- lib/pure/os.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/os.nim b/lib/pure/os.nim index b0b17260e9..d549585a5d 100644 --- a/lib/pure/os.nim +++ b/lib/pure/os.nim @@ -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