From c03f6b4da4fae9f9cd012da5c5be8516ae1995da Mon Sep 17 00:00:00 2001 From: David Capello Date: Wed, 18 Nov 2015 16:24:13 -0300 Subject: [PATCH] Fix typo in src/app/cmd/README.md --- src/app/cmd/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/cmd/README.md b/src/app/cmd/README.md index 2bbcc1085..34190c581 100644 --- a/src/app/cmd/README.md +++ b/src/app/cmd/README.md @@ -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).