Skip to content

Commit

Permalink
Update hash-map.dd
Browse files Browse the repository at this point in the history
Fixed typo.
  • Loading branch information
ralphtandetzky committed Dec 9, 2013
1 parent 8e6c094 commit 3726a94
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 3726a94

Please sign in to comment.