aboutsummaryrefslogtreecommitdiff
path: root/src/rust/tor_util
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2017-11-05 15:47:49 +0000
committerNick Mathewson <nickm@torproject.org>2017-11-05 13:58:51 -0500
commita72e13a669d79522663eb346b838da01b8937ea3 (patch)
treeef02483985281d429ccb5cf5eaa3b4d1e8f4b766 /src/rust/tor_util
parentcceb43c5e31e88535f39aa4b284c1e83ef69faa0 (diff)
downloadtor-a72e13a669d79522663eb346b838da01b8937ea3.tar.gz
tor-a72e13a669d79522663eb346b838da01b8937ea3.zip
Fix rust welcome message typo.
Diffstat (limited to 'src/rust/tor_util')
-rw-r--r--src/rust/tor_util/ffi.rs2
1 files changed, 1 insertions, 1 deletions
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)
}