Skip to content

Commit

Permalink
Merge pull request #436 from ralphtandetzky/patch-5
Browse files Browse the repository at this point in the history
Update hash-map.dd
  • Loading branch information
9rnsr committed Dec 9, 2013
2 parents 8e6c094 + 3726a94 commit d9a3c0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hash-map.dd
Expand Up @@ -193,7 +193,7 @@ $(H3 Construction or assignment on setting AA entries)
void opAssign(int v) { this.val = v * 2; }
}
S[int] aa;
aa[1] = 10; // is rewitten to: aa[1].opAssign(10), and
aa[1] = 10; // is rewritten to: aa[1].opAssign(10), and
// throws RangeError before opAssign is called
---------

Expand Down

0 comments on commit d9a3c0f

Please sign in to comment.