]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix rust welcome message typo.
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>
Sun, 5 Nov 2017 15:47:49 +0000 (15:47 +0000)
committerNick Mathewson <nickm@torproject.org>
Sun, 5 Nov 2017 18:58:51 +0000 (13:58 -0500)
src/rust/tor_util/ffi.rs

index 76c6e6d394c81c663640e7867d913588ee9252f7..5c3cdba4bebf5ca5e98fc887edc001a852a6838d 100644 (file)
@@ -20,7 +20,7 @@ use tor_allocate::allocate_and_copy_string;
 pub extern "C" fn rust_welcome_string() -> *mut c_char {
     let rust_welcome = String::from(
         "Tor is running with Rust integration. Please report \
-         any bugs you encouter.",
+         any bugs you encounter.",
     );
     allocate_and_copy_string(&rust_welcome)
 }