From e3eb8cc442aadfd3318c56b084b51e0255e6e85e Mon Sep 17 00:00:00 2001 From: Natalie Weizenbaum Date: Mon, 11 Mar 2019 17:38:45 -0700 Subject: [PATCH] Clarify that multiple / operations aren't treated as divison Closes #303 --- source/documentation/operators/numeric.html.md.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/documentation/operators/numeric.html.md.erb b/source/documentation/operators/numeric.html.md.erb index 93a3fc7..969ec53 100644 --- a/source/documentation/operators/numeric.html.md.erb +++ b/source/documentation/operators/numeric.html.md.erb @@ -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 `#{} / #{}`.