summaryrefslogtreecommitdiff
path: root/04-identifiers-names-and-scopes.md
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2014-03-26 01:11:09 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2014-03-26 01:11:09 -0700
commitf16ab43734906e752eba81c3e73acb44dd792bbc (patch)
treed6d15198fa95fdab655c6a255b6c98db692b6285 /04-identifiers-names-and-scopes.md
parent56295292f28c78ebb4421e965ec302264fe51976 (diff)
downloadscala-f16ab43734906e752eba81c3e73acb44dd792bbc.tar.gz
scala-f16ab43734906e752eba81c3e73acb44dd792bbc.tar.bz2
scala-f16ab43734906e752eba81c3e73acb44dd792bbc.zip
use simple quotes, fix indent, escape dollar
Diffstat (limited to '04-identifiers-names-and-scopes.md')
-rw-r--r--04-identifiers-names-and-scopes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/04-identifiers-names-and-scopes.md b/04-identifiers-names-and-scopes.md
index 62d150d281..a9985d1340 100644
--- a/04-identifiers-names-and-scopes.md
+++ b/04-identifiers-names-and-scopes.md
@@ -107,7 +107,7 @@ object A {
{ val x = "abc" // `x' bound by local definition
import P.X._ // `x' and `y' bound by wildcard import
// println("L19: "+y) // reference to `y' is ambiguous here
- println("L20: "+x) // `x' refers to string ``abc'' here
+ println("L20: "+x) // `x' refers to string "abc" here
}}}}}}
```