diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:06:06 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:06:06 +0000 |
commit | c95f6f117a665bc6d3d64ae8703459759973f63f (patch) | |
tree | 21df380c373960c77b8bb19eb415578f1556c953 /koch.nim | |
parent | d8c4c576372f63219b90203a71855c93a10ddda3 (diff) | |
download | Nim-c95f6f117a665bc6d3d64ae8703459759973f63f.tar.gz |
Fix typos
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index b0b4a79da..9a7afae3d 100644 --- a/koch.nim +++ b/koch.nim @@ -270,13 +270,13 @@ when defined(withUpdate): echo("Fetching updates from repo...") var pullout = execCmdEx(git & " pull origin master") if pullout[1] != 0: - quit("An error has occured.") + quit("An error has occurred.") else: if pullout[0].startsWith("Already up-to-date."): quit("No new changes fetched from the repo. " & "Local branch must be ahead of it. Exiting...") else: - quit("An error has occured.") + quit("An error has occurred.") else: echo("No repo or executable found!") |