Browse Source

Fix rust welcome message typo.

Alex Xu (Hello71) 6 years ago
parent
commit
a72e13a669
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/rust/tor_util/ffi.rs

+ 1 - 1
src/rust/tor_util/ffi.rs

@@ -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)
 }