From: Alex Xu (Hello71) Date: Sun, 5 Nov 2017 15:47:49 +0000 (+0000) Subject: Fix rust welcome message typo. X-Git-Tag: tor-0.3.3.1-alpha~263 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a72e13a669d79522663eb346b838da01b8937ea3;p=thirdparty%2Ftor.git Fix rust welcome message typo. --- diff --git a/src/rust/tor_util/ffi.rs b/src/rust/tor_util/ffi.rs index 76c6e6d394..5c3cdba4be 100644 --- 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) }