Przeglądaj źródła

goprotobuf: Fix typo in README.

Fixes #31.

R=golang-dev, bradfitz
CC=golang-dev
http://codereview.appspot.com/6442094
David Symonds 13 lat temu
rodzic
commit
144ffdd6c6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      README

+ 1 - 1
README

@@ -167,7 +167,7 @@ To create and play with a Test object from the example package,
 		}
 		// Now test and newTest contain the same data.
 		if test.GetLabel() != newTest.GetLabel() {
-			log.Fatalf("data mismatch %q != %q", test.Get(Label), newTest.Get(Label))
+			log.Fatalf("data mismatch %q != %q", test.GetLabel(), newTest.GetLabel())
 		}
 		// etc.
 	}