瀏覽代碼

Fix rust welcome message typo.

Alex Xu (Hello71) 8 年之前
父節點
當前提交
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)
 }