summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFeepingCreature <default_357-line@yahoo.de>2013-09-08 13:15:38 +0200
committerFeepingCreature <default_357-line@yahoo.de>2013-09-08 13:15:38 +0200
commitff24568b098b2233961408960ab30518acaebe32 (patch)
treea05eaca159318f61ba4cbf485c654af4e751f95b
parentff6cf1836481bded466bdbb4eb7765ad8424872c (diff)
Fix small syntax bug
-rw-r--r--neat.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/neat.html.markdown b/neat.html.markdown
index ecb255c2..b7777cdc 100644
--- a/neat.html.markdown
+++ b/neat.html.markdown
@@ -223,7 +223,7 @@ void main(string[] args) {
void writeS() { writeln "$s"; }
}
C cc = new C;
- // c is a *reference* to C. Classes are always references.
+ // cc is a *reference* to C. Classes are always references.
cc.a = 5; // Always used for property access.
auto ccp = &cc;
(*ccp).a = 6;