aboutsummaryrefslogtreecommitdiff
path: root/chapter/7
diff options
context:
space:
mode:
authorJames Larisch <james@jameslarisch.com>2016-12-17 17:24:40 -0500
committerJames Larisch <james@jameslarisch.com>2016-12-17 17:24:40 -0500
commit7aa8cd97fc451f28dbdb9d95af808e27c598054f (patch)
treed41de3dbe279d88f621bfc2969ec0b8ed255f8a1 /chapter/7
parentbf4cd5b0534edfcdca171ccc0f3bc142cd50bf64 (diff)
remove cool
Diffstat (limited to 'chapter/7')
-rw-r--r--chapter/7/langs-consistency.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/chapter/7/langs-consistency.md b/chapter/7/langs-consistency.md
index 50f3926..b19ba23 100644
--- a/chapter/7/langs-consistency.md
+++ b/chapter/7/langs-consistency.md
@@ -69,7 +69,7 @@ Let's try this transfiguration on the shopping cart. Let's strip it down: how do
{ Red Candle, Blue Skateboard } U { Red Candle, Green Umbrella } == { Red Candle, Blue Skateboard, Green Umbrella }
```
-Cool. Using this knowledge, let's try to construct our own shopping cart that automatically resolves conflicts.
+Using this knowledge, let's try to construct our own shopping cart that automatically resolves conflicts.
(Unfortunately Amazon has a leg up on our startup. Their programmers have figured out a way to add multiple instances of a single item into the cart. Users on our website can only add one "Red Candle"" to their shopping cart. This is due to a fundamental limitation in the type of CRDT I chose to exemplify. It's quite possible to have a fully functional cart. Take a look at LWW-Sets.)