Explorar o código

modify double quotes (#448)

Neal Caffery %!s(int64=8) %!d(string=hai) anos
pai
achega
7c8672ed8e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)
 	}
 }
 ```