From add8a7e7013481ab6b4641c0cc72b2040ae9b7d9 Mon Sep 17 00:00:00 2001 From: ONion Date: Mon, 17 Nov 2014 20:51:19 +0800 Subject: [PATCH] Update go-basics.tex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改语义上的错误 --- go-basics.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-basics.tex b/go-basics.tex index 6f95a7a..9d0618a 100644 --- a/go-basics.tex +++ b/go-basics.tex @@ -189,7 +189,7 @@ \section{变量、类型和关键字} \begin{lstlisting} _, b := 34, 35 \end{lstlisting} -Go 的编译器对声明却\emph{未使用}的变量在报错。下面的代码会产生这个错误: +Go 的编译器对声明却\emph{未使用}的变量会报错。下面的代码会产生这个错误: \error{声明了~i 却未使用} \begin{lstlisting}