Преглед на файлове

Documentation fixes suggested by catalyst.

Nick Mathewson преди 6 години
родител
ревизия
28c3f538e5
променени са 1 файла, в които са добавени 4 реда и са изтрити 4 реда
  1. 4 4
      src/rust/tor_util/strings.rs

+ 4 - 4
src/rust/tor_util/strings.rs

@@ -83,10 +83,10 @@
 /// # 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);