From 009a53b472017dbec18442611fb849b9801db41d Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Thu, 1 Jun 2023 15:29:37 +0100 Subject: [PATCH] Switch to using null --- src/macros.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/macros.rs b/src/macros.rs index 70acde25e..0936f7231 100644 --- a/src/macros.rs +++ b/src/macros.rs @@ -2,7 +2,6 @@ /// /// ``` /// # use serde_json::json; -/// # use serde_json::Value; /// # /// let value = json!({ /// "code": 200, @@ -12,7 +11,7 @@ /// "serde", /// "json" /// ], -/// "empty": Value::Null +/// "empty": null /// } /// }); /// ```