File tree 1 file changed +2
-3
lines changed
src/cmd/compile/internal/gc 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -816,7 +816,7 @@ func stmtfmt(n *Node) string {
816
816
f += Nconv (n .Right , 0 )
817
817
}
818
818
819
- // Don't export "v = <N>" initializing statements, hope they're always
819
+ // Don't export "v = <N>" initializing statements, hope they're always
820
820
// preceded by the DCL which will be re-parsed and typecheck to reproduce
821
821
// the "v = <N>" again.
822
822
case OAS , OASWB :
@@ -1127,7 +1127,7 @@ func exprfmt(n *Node, prec int) string {
1127
1127
1128
1128
return Vconv (n .Val (), 0 )
1129
1129
1130
- // Special case: name used as local variable in export.
1130
+ // Special case: name used as local variable in export.
1131
1131
// _ becomes ~b%d internally; print as _ for export
1132
1132
case ONAME :
1133
1133
if (fmtmode == FExp || fmtmode == FErr ) && n .Sym != nil && n .Sym .Name [0 ] == '~' && n .Sym .Name [1 ] == 'b' {
@@ -1149,7 +1149,6 @@ func exprfmt(n *Node, prec int) string {
1149
1149
}
1150
1150
fallthrough
1151
1151
1152
- //fallthrough
1153
1152
case OPACK , ONONAME :
1154
1153
return Sconv (n .Sym , 0 )
1155
1154
You can’t perform that action at this time.
0 commit comments