소스 검색

modify double quotes (#448)

Neal Caffery 8 년 전
부모
커밋
7c8672ed8e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      eBook/13.9.md

+ 1 - 1
eBook/13.9.md

@@ -33,7 +33,7 @@ func TestFunction(t *testing.T) {
 ```go
 func verify(t *testing.T, testnum int, testcase, input, output, expected string) {
 	if expected != output {
-		t.Errorf(“%d. %s with input = %s: output %s != %s”, testnum, testcase, input, output, expected)
+		t.Errorf("%d. %s with input = %s: output %s != %s", testnum, testcase, input, output, expected)
 	}
 }
 ```