about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--users/wpcarro/scratch/rust/json/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/wpcarro/scratch/rust/json/src/main.rs b/users/wpcarro/scratch/rust/json/src/main.rs
index 1ec332705d..6481224fff 100644
--- a/users/wpcarro/scratch/rust/json/src/main.rs
+++ b/users/wpcarro/scratch/rust/json/src/main.rs
@@ -3,8 +3,8 @@ use serde_json::{json, Value};
 
 // From the serde_json docs:
 //
-// > There are three common ways that you might find yourself needing to work with
-// > JSON data in Rust.
+// > There are three common ways that you might find yourself needing to work
+// > with JSON data in Rust.
 // >
 // > 1. As text data. An unprocessed string of JSON data that you receive on an
 // >    HTTP endpoint, read from a file, or prepare to send to a remote server.