Skip to content

Commit b9855d2

Browse files
committed
Update
1 parent e0d57bd commit b9855d2

File tree

1 file changed

+1
-1
lines changed
  • examples/singleapp/suppress_compileerror_with_blank_variable

1 file changed

+1
-1
lines changed

examples/singleapp/suppress_compileerror_with_blank_variable/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ func run() error {
1212
)
1313

1414
// そのままにしていると v は利用されていないことになるため
15-
// コンパイルエラー (v declared and not usedcompilerUnusedVar) となる。
15+
// コンパイルエラー (v declared and not used) となる。
1616
// 一時的に抑止したい場合は _ に代入しておく
1717
_ = v
1818

0 commit comments

Comments
 (0)