summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorDaniel Barclay <dbarclay@savi.com>2016-11-05 12:12:42 -0400
committerDaniel Barclay <dbarclay@savi.com>2016-11-05 12:12:42 -0400
commitef35f9aa0e1b1665d3b6daebaaf441b284d6d6f4 (patch)
tree99dd470603273900a8be869ae4ab5698fe73aa56 /spec
parent4d381f2229fae6c7ef68a032f98b7f805c7e7a23 (diff)
downloadscala-ef35f9aa0e1b1665d3b6daebaaf441b284d6d6f4.tar.gz
scala-ef35f9aa0e1b1665d3b6daebaaf441b284d6d6f4.tar.bz2
scala-ef35f9aa0e1b1665d3b6daebaaf441b284d6d6f4.zip
Fix two instances of ASCII `...' quoting to Unicode ‘...’ (to match others).
Diffstat (limited to 'spec')
-rw-r--r--spec/06-expressions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/06-expressions.md b/spec/06-expressions.md
index 30fd94c1a8..36cd3fd3cf 100644
--- a/spec/06-expressions.md
+++ b/spec/06-expressions.md
@@ -655,7 +655,7 @@ precedence, with characters on the same line having the same precedence.
```
That is, operators starting with a letter have lowest precedence,
-followed by operators starting with ``|`', etc.
+followed by operators starting with ‘`|`’, etc.
There's one exception to this rule, which concerns
[_assignment operators_](#assignment-operators).
@@ -664,7 +664,7 @@ of simple assignment `(=)`. That is, it is lower than the
precedence of any other operator.
The _associativity_ of an operator is determined by the operator's
-last character. Operators ending in a colon ``:`' are
+last character. Operators ending in a colon ‘`:`’ are
right-associative. All other operators are left-associative.
Precedence and associativity of operators determine the grouping of