summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-06-29 09:41:33 +0530
committerGitHub <noreply@github.com>2019-06-29 09:41:33 +0530
commit3d53a2b11001c4174e2c602035cddaf3710c0d9f (patch)
tree0aae9ca97d3f370fdb0fac5ae4ef30b35f7b95cd
parent4856776f137ab472c6d2ca70a4c25e6748471081 (diff)
parentbee7c2b229ea19515a97ee344b3ff2eb47d5c0f7 (diff)
Merge pull request #3550 from esthor/patch-1
[prolog] - typo fix in 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