From c1e6fab99444f6b4cd4512f86b2cf3b731c91732 Mon Sep 17 00:00:00 2001 From: hongruiqi Date: Sat, 25 Aug 2012 22:00:56 +0800 Subject: [PATCH] fix ` --- 2.2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2.2.md b/2.2.md index c62769e8..4aa8131a 100644 --- a/2.2.md +++ b/2.2.md @@ -162,12 +162,12 @@ GO中可以使用`+`来链接两个字符串 s = "c" + s[1:] // 字符串虽不能更改,但可进行切片操作 fmt.Println("%s\n", s) -如果要申明一个多行的字符串怎么办?可以通过````来申明 +如果要申明一个多行的字符串怎么办?可以通过`` ` ``来申明 m:=`hello world` -```` 括起的字符串为Raw字符串,即字符串在代码中的形式就是打印时的形式,没有字符转义,换行也将原样输出。 +`` ` `` 括起的字符串为Raw字符串,即字符串在代码中的形式就是打印时的形式,没有字符转义,换行也将原样输出。 ###GO数据底层的存储