File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -168,11 +168,11 @@ impl Display for RawValue {
168
168
}
169
169
170
170
impl RawValue {
171
- /// A literal JSON null value as `RawValue `.
171
+ /// A constant RawValue with the JSON value `null `.
172
172
pub const NULL : & ' static RawValue = RawValue :: from_borrowed ( "null" ) ;
173
- /// A literal JSON boolean true value as `RawValue `.
173
+ /// A constant RawValue with the JSON value `true `.
174
174
pub const TRUE : & ' static RawValue = RawValue :: from_borrowed ( "true" ) ;
175
- /// A literal JSON boolean false value as `RawValue `.
175
+ /// A constant RawValue with the JSON value `false `.
176
176
pub const FALSE : & ' static RawValue = RawValue :: from_borrowed ( "false" ) ;
177
177
178
178
/// Convert an owned `String` of JSON data to an owned `RawValue`.
You can’t perform that action at this time.
0 commit comments