Skip to content

Commit 9875785

Browse files
committed
Tweak wording of NULL/TRUE/FALSE documentation
1 parent 4aa05b9 commit 9875785

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/raw.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,11 +168,11 @@ impl Display for RawValue {
168168
}
169169

170170
impl RawValue {
171-
/// A literal JSON null value as `RawValue`.
171+
/// A constant RawValue with the JSON value `null`.
172172
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`.
174174
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`.
176176
pub const FALSE: &'static RawValue = RawValue::from_borrowed("false");
177177

178178
/// Convert an owned `String` of JSON data to an owned `RawValue`.

0 commit comments

Comments
 (0)