diff options
| author | Erik Thorelli <ethorelli@gmail.com> | 2019-06-19 14:01:48 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-06-19 14:01:48 -0400 | 
| commit | bee7c2b229ea19515a97ee344b3ff2eb47d5c0f7 (patch) | |
| tree | fdef39665cc3820d158103cf24ad8a425193e0e6 | |
| parent | 592901be9ce3bd6c854bbd1f0fa29981d373cec6 (diff) | |
typo fix in prolog.html.markdown
| -rw-r--r-- | prolog.html.markdown | 2 | 
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  | 
