We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d685dac commit a9c1a8eCopy full SHA for a9c1a8e
bson/raw_value.go
@@ -99,7 +99,7 @@ func (rv RawValue) Double() float64 { return convertToCoreValue(rv).Double() }
99
// DoubleOK is the same as Double, but returns a boolean instead of panicking.
100
func (rv RawValue) DoubleOK() (float64, bool) { return convertToCoreValue(rv).DoubleOK() }
101
102
-// StringValue returns the string balue for this element.
+// StringValue returns the string value for this element.
103
// It panics if e's BSON type is not bsontype.String.
104
//
105
// NOTE: This method is called StringValue to avoid a collision with the String method which
0 commit comments