]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Documentation fixes suggested by catalyst.
authorNick Mathewson <nickm@torproject.org>
Fri, 16 Feb 2018 01:38:08 +0000 (20:38 -0500)
committerNick Mathewson <nickm@torproject.org>
Fri, 16 Feb 2018 01:38:08 +0000 (20:38 -0500)
src/rust/tor_util/strings.rs

index 4e26e7369c033c23716631f9c0f7fe2c029eea20..505191d9133556f54f6cae551567a2440d8b7d9d 100644 (file)
 /// # Note
 ///
 /// An unfortunate limitation of the rustc compiler (as of 1.25.0-nightly), is
-/// that the above code compiles, however if we were to change the assignment of
-/// `tuesday` as follows, it will fail to compile, because Rust macros are
-/// expanded at parse time, and at parse time there is no symbols table
-/// available.
+/// that the first example above compiles, but if we were to change the
+/// assignment of `tuesday` as follows, it will fail to compile, because Rust
+/// macros are expanded at parse time, and at parse time there is no symbol
+/// table available.
 ///
 /// ```ignore
 /// tuesday = cstr!(message);