diff options
author | Austin Clements <aclements@csail.mit.edu> | 2009-07-20 16:14:48 -0700 |
---|---|---|
committer | Austin Clements <aclements@csail.mit.edu> | 2009-07-20 16:14:48 -0700 |
commit | 2dc5e13661576906ba522a054ee0f2220813aff3 (patch) | |
tree | 028d8878c9095b4e9917c79ade8acbe4a64b188b /src/pkg/go/token/token.go | |
parent | 0f6417756afa994c1670ded5ea73fa3d215ea296 (diff) | |
download | golang-2dc5e13661576906ba522a054ee0f2220813aff3.tar.gz |
Fix typo. MUL_ASSIGN is "*=", not "+=".
R=gri
APPROVED=gri
DELTA=1 (0 added, 0 deleted, 1 changed)
OCL=31879
CL=31886
Diffstat (limited to 'src/pkg/go/token/token.go')
-rw-r--r-- | src/pkg/go/token/token.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/go/token/token.go b/src/pkg/go/token/token.go index 3197b6637..f165d1978 100644 --- a/src/pkg/go/token/token.go +++ b/src/pkg/go/token/token.go @@ -154,7 +154,7 @@ var tokens = map [Token] string { ADD_ASSIGN : "+=", SUB_ASSIGN : "-=", - MUL_ASSIGN : "+=", + MUL_ASSIGN : "*=", QUO_ASSIGN : "/=", REM_ASSIGN : "%=", |