Clarify that multiple / operations aren't treated as divison

Closes #303
This commit is contained in:
Natalie Weizenbaum 2019-03-11 17:38:45 -07:00
parent b8fd618da7
commit e3eb8cc442

View File

@ -129,7 +129,7 @@ is met:
* The result is stored in a variable or returned by a function.
* The operation is surrounded by parentheses, unless those parentheses are
outside a list that contains the operation.
* The result is used as part of another operation.
* The result is used as part of another operation (other than `/`).
If you want to force `/` to be used as a separator, you can write it as
`#{<expression>} / #{<expression>}`.