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

Fix rust welcome message typo.

Alex Xu (Hello71) преди 6 години
родител
ревизия
a72e13a669
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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)
 }