speter 13 년 전
부모
커밋
da9f10ea9a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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() {