Fix rust welcome message typo.

This commit is contained in:
Alex Xu (Hello71)
2017-11-05 15:47:49 +00:00
committed by Nick Mathewson
parent cceb43c5e3
commit a72e13a669
+1 -1
View File
@@ -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)
}