diff options
Diffstat (limited to 'neat.html.markdown')
-rw-r--r-- | neat.html.markdown | 2 |
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; |