commit a72e13a669d79522663eb346b838da01b8937ea3
parent cceb43c5e31e88535f39aa4b284c1e83ef69faa0
Author: Alex Xu (Hello71) <alex_y_xu@yahoo.ca>
Date: Sun, 5 Nov 2017 15:47:49 +0000
Fix rust welcome message typo.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/rust/tor_util/ffi.rs b/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)
}