diff options
author | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:45:12 -0500 |
---|---|---|
committer | patrick dw <algorithicimperative@gmail.com> | 2015-06-19 01:45:12 -0500 |
commit | 2a0f7b5de72dc1d8c1018bb60630764f765376bb (patch) | |
tree | 3705c0a33829ec6c1343c40ca390dcebd0324d7b /compiler/options.nim | |
parent | 4e275f2a1a1995d6b7a2bc461b96d804368c0931 (diff) | |
download | Nim-2a0f7b5de72dc1d8c1018bb60630764f765376bb.tar.gz |
renamed writeln to writeLine in compiler
Diffstat (limited to 'compiler/options.nim')
-rw-r--r-- | compiler/options.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index f3277f855..398d3171d 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -304,7 +304,7 @@ proc completeGeneratedFilePath*(f: string, createSubDir: bool = true): string = when noTimeMachine: excludeDirFromTimeMachine(subdir) except OSError: - writeln(stdout, "cannot create directory: " & subdir) + writeLine(stdout, "cannot create directory: " & subdir) quit(1) result = joinPath(subdir, tail) #echo "completeGeneratedFilePath(", f, ") = ", result |