about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2022-06-27T01·04-0700
committerclbot <clbot@tvl.fyi>2022-06-27T18·20+0000
commit46ba96544a8e13141d3f4920bc67e35dbdbc559f (patch)
tree1e112ab3e491d6664c1ea50cd253eeb8a5ef6202
parentf8ed0088ea459d7d585bbcef2e7ca0943319518b (diff)
docs(wpcarro/rust): Tidy-up documentation width r/4262
Line was too long

Change-Id: I62c4454307f89e089f7d4cda0721f6b9d8029ced
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5900
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
-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.