We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aa05b9 commit 9875785Copy full SHA for 9875785
src/raw.rs
@@ -168,11 +168,11 @@ impl Display for RawValue {
168
}
169
170
impl RawValue {
171
- /// A literal JSON null value as `RawValue`.
+ /// A constant RawValue with the JSON value `null`.
172
pub const NULL: &'static RawValue = RawValue::from_borrowed("null");
173
- /// A literal JSON boolean true value as `RawValue`.
+ /// A constant RawValue with the JSON value `true`.
174
pub const TRUE: &'static RawValue = RawValue::from_borrowed("true");
175
- /// A literal JSON boolean false value as `RawValue`.
+ /// A constant RawValue with the JSON value `false`.
176
pub const FALSE: &'static RawValue = RawValue::from_borrowed("false");
177
178
/// Convert an owned `String` of JSON data to an owned `RawValue`.
0 commit comments