speter 13 years ago
parent
commit
da9f10ea9a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dec/example_test.go

+ 1 - 1
dec/example_test.go

@@ -11,7 +11,7 @@ func ExampleDec_SetString() {
 	d := new(dec.Dec)
 	d := new(dec.Dec)
 	d.SetString("012345.67890") // decimal; leading 0 ignored; trailing 0 kept
 	d.SetString("012345.67890") // decimal; leading 0 ignored; trailing 0 kept
 	fmt.Println(d)
 	fmt.Println(d)
-	// Output: 12345.67890 break test
+	// Output: 12345.67890
 }
 }
 
 
 func ExampleDec_Scan() {
 func ExampleDec_Scan() {