summaryrefslogtreecommitdiffhomepage
path: root/prolog.html.markdown
diff options
context:
space:
mode:
authorErik Thorelli <ethorelli@gmail.com>2019-06-19 14:01:48 -0400
committerGitHub <noreply@github.com>2019-06-19 14:01:48 -0400
commitbee7c2b229ea19515a97ee344b3ff2eb47d5c0f7 (patch)
treefdef39665cc3820d158103cf24ad8a425193e0e6 /prolog.html.markdown
parent592901be9ce3bd6c854bbd1f0fa29981d373cec6 (diff)
typo fix in prolog.html.markdown
Diffstat (limited to 'prolog.html.markdown')
-rw-r--r--prolog.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/prolog.html.markdown b/prolog.html.markdown
index f7b55ac6..d4c28cba 100644
--- a/prolog.html.markdown
+++ b/prolog.html.markdown
@@ -75,7 +75,7 @@ magicNumber(42).
?- 2 = 3. % False - equality test
?- X = 3. % X = 3 - assignment
?- X = 2, X = Y. % X = Y = 2 - two assignments
- % Note Y is assigned to, even though it is
+ % Note Y is assigned too, even though it is
% on the right hand side, because it is free
?- X = 3, X = 2. % False
% First acts as assignment and binds X=3