Merge pull request 1295 from claudecodering/master

This commit is contained in:
David Tolnay 2025-11-04 09:22:58 -08:00
commit 8b674e41d5
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -18,7 +18,7 @@
///
/// Variables or expressions can be interpolated into the JSON literal. Any type
/// interpolated into an array element or object value must implement Serde's
/// `Serialize` trait, while any type interpolated into a object key must
/// `Serialize` trait, while any type interpolated into an object key must
/// implement `Into<String>`. If the `Serialize` implementation of the
/// interpolated type decides to fail, or if the interpolated type contains a
/// map with non-string keys, the `json!` macro will panic.