Nimscript fixes 'cpFile' typo

This commit is contained in:
Araq
2015-11-03 14:52:07 +01:00
parent 86c8a7a947
commit 5c8342eef9

View File

@@ -163,7 +163,7 @@ proc mvFile*(`from`, to: string) {.raises: [OSError].} =
proc cpFile*(`from`, to: string) {.raises: [OSError].} =
## Copies the file `from` to `to`.
log "mvFile: " & `from` & ", " & to:
log "cpFile: " & `from` & ", " & to:
copyFile `from`, to
checkOsError()