diff options
author | Vincent Esche <[email protected]> | 2021-01-08 14:46:48 +0000 |
---|---|---|
committer | Vincent Esche <[email protected]> | 2021-01-09 14:41:29 +0000 |
commit | 21f8239ac8be6093967bc91ec155782d37efcb6a (patch) | |
tree | e4af0f0077f2d736db4651673dbab3d274275f02 /crates/proc_macro_api | |
parent | 939ca83b34f9a5648d196f85e5cc7d844ba22604 (diff) |
Fixed typos in code comments
Diffstat (limited to 'crates/proc_macro_api')
-rw-r--r-- | crates/proc_macro_api/src/msg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/proc_macro_api/src/msg.rs b/crates/proc_macro_api/src/msg.rs index 4cd572101..970f165ed 100644 --- a/crates/proc_macro_api/src/msg.rs +++ b/crates/proc_macro_api/src/msg.rs | |||
@@ -79,7 +79,7 @@ impl Message for Response {} | |||
79 | fn read_json(inp: &mut impl BufRead) -> io::Result<Option<String>> { | 79 | fn read_json(inp: &mut impl BufRead) -> io::Result<Option<String>> { |
80 | let mut buf = String::new(); | 80 | let mut buf = String::new(); |
81 | inp.read_line(&mut buf)?; | 81 | inp.read_line(&mut buf)?; |
82 | buf.pop(); // Remove traling '\n' | 82 | buf.pop(); // Remove trailing '\n' |
83 | Ok(match buf.len() { | 83 | Ok(match buf.len() { |
84 | 0 => None, | 84 | 0 => None, |
85 | _ => Some(buf), | 85 | _ => Some(buf), |