Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug in constraint introduction #37

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix bug in constraint introduction
Fixed bug in constraint programming section where it was
erroneously stated that `x => 100, y => 10`
  • Loading branch information
Esa Juhana Lahikainen committed Dec 25, 2016
commit a0bba7023200211f0b8fe16dee449c55b300f451
2 changes: 1 addition & 1 deletion guides/_posts/2014-01-20-ccss.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
x == 100;
y >= 10;

// x => 100, y => 100
// x == 100, y == 100

{% endhighlight %}

Expand Down