diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:20:32 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2015-02-15 16:20:32 +0000 |
commit | 657dca5c3b26a088ac291e06308d44d5e52c162f (patch) | |
tree | a3009486a0157d0a5d38bfabff3b041cab3e3779 /examples/cross_todo | |
parent | c95f6f117a665bc6d3d64ae8703459759973f63f (diff) | |
download | Nim-657dca5c3b26a088ac291e06308d44d5e52c162f.tar.gz |
Fix typos
Diffstat (limited to 'examples/cross_todo')
-rw-r--r-- | examples/cross_todo/nim_backend/backend.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cross_todo/nim_backend/backend.nim b/examples/cross_todo/nim_backend/backend.nim index 9c7d2bafa..5b49bc4a9 100644 --- a/examples/cross_todo/nim_backend/backend.nim +++ b/examples/cross_todo/nim_backend/backend.nim @@ -91,7 +91,7 @@ proc update*(todo: var TTodo; conn: TDbConn): bool = ## ## Use this method if you (or another entity) have modified the database and ## want to update the object you have with whatever the database has stored. - ## Returns true if the update suceeded, or false if the object was not found + ## Returns true if the update succeeded, or false if the object was not found ## in the database any more, in which case you should probably get rid of the ## TTodo object. assert(todo.id >= 0, "The identifier of the todo entry can't be negative") |