1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-03 07:24:58 +03:00

Merge pull request #33 from zedlopez/precedence_typo_fix

doc typo fix
This commit is contained in:
Graham Nelson 2022-05-07 09:03:20 +01:00 committed by GitHub
commit ad42986811
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -400,7 +400,7 @@ copies of Locksmith around. Inbuild first reduces the list to just those
whose version lies in the acceptable range. It then applies the following
rules:
(1) A copy in the Materials nest takes precedence over all others.
(2) Otherwise, all other copies take precendence over those in the
(2) Otherwise, all other copies take precedence over those in the
internal nest.
(3) Otherwise, semantic version number rules are used to determine which
copy had precedence.

View file

@ -1621,7 +1621,7 @@ otherwise convert it from an |OPERATOR_ISTT| to an |IDENTIFIER_ISTT|.
}
@ Well... so actually we have to be a bit more careful about left vs right
associativity if there are two least-precendence operators both at the top
associativity if there are two least-precedence operators both at the top
level, as in the case of |x - y + z| or (horrifically) |x = y = z|.
=