Fix typo in src/app/cmd/README.md

This commit is contained in:
David Capello 2015-11-18 16:24:13 -03:00
parent 6cbb1882d4
commit c03f6b4da4

View File

@ -6,6 +6,6 @@ entities. As several `cmd` can persist in parallel with other `cmd`
these smart pointers can generate conflicts in the logic layer.
E.g. If we keep an `ImageRef` inside a `cmd`, the image is
not removed from the [objects hash table](../../doc/object.cpp),
so two or more `cmd` could will try to add/remove the same object
so two or more `cmd` could try to add/remove the same object
in the hash table (there are asserts to check this state, were
someone is trying to add the same `ObjectId` in the hash table).