From cc283633fffa928e5d438b1df572f0c080a85e88 Mon Sep 17 00:00:00 2001 From: Edwin Kofler Date: Fri, 12 Nov 2021 08:12:30 -0800 Subject: [PATCH] style: Whitespace fixes --- src/do.nim | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/do.nim b/src/do.nim index 1713355..0ca347a 100755 --- a/src/do.nim +++ b/src/do.nim @@ -12,13 +12,13 @@ proc doAbstract( homeDir: string, options: Options, dotfiles: seq[array[2, string]], - runSymlinkSymlink: proc (dotfile: string, srcFile: string, options: Options), - runSymlinkFile: proc (dotfile: string, srcFile: string, options: Options), - runSymlinkDir: proc (dotfile: string, srcFile: string, options: Options), - runSymlinkNull: proc (dotfile: string, srcFile: string), + runSymlinkSymlink: proc(dotfile: string, srcFile: string, options: Options), + runSymlinkFile: proc(dotfile: string, srcFile: string, options: Options), + runSymlinkDir: proc(dotfile: string, srcFile: string, options: Options), + runSymlinkNull: proc(dotfile: string, srcFile: string), runFileFile: proc(dotfile: string, srcFile: string), runFileDir: proc(dotfile: string, srcFile: string), - runFileNull: proc (dotfile: string, srcFile: string), + runFileNull: proc(dotfile: string, srcFile: string), runDirFile: proc(dotfile: string, srcFile: string), runDirDir: proc(dotfile: string, srcFile: string), runDirNull: proc(dotfile: string, srcFile: string),