From a0bba7023200211f0b8fe16dee449c55b300f451 Mon Sep 17 00:00:00 2001 From: Esa Juhana Lahikainen Date: Sun, 25 Dec 2016 15:41:37 +0200 Subject: [PATCH] Fix bug in constraint introduction Fixed bug in constraint programming section where it was erroneously stated that `x => 100, y => 10` --- guides/_posts/2014-01-20-ccss.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/_posts/2014-01-20-ccss.html b/guides/_posts/2014-01-20-ccss.html index 3748c67..c49f5e1 100644 --- a/guides/_posts/2014-01-20-ccss.html +++ b/guides/_posts/2014-01-20-ccss.html @@ -75,7 +75,7 @@ x == 100; y >= 10; -// x => 100, y => 100 +// x == 100, y == 100 {% endhighlight %}