From 1690e877ed94c35a77efb4175f62efe6451c88c6 Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou <dimitris.apostolou@icloud.com> Date: Thu, 10 Feb 2022 14:25:56 +0200 Subject: [PATCH] Fix typos --- crates/tor-chanmgr/src/mgr/map.rs | 2 +- doc/Android.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tor-chanmgr/src/mgr/map.rs b/crates/tor-chanmgr/src/mgr/map.rs index 4862839e6e..47fcb921a4 100644 --- a/crates/tor-chanmgr/src/mgr/map.rs +++ b/crates/tor-chanmgr/src/mgr/map.rs @@ -427,7 +427,7 @@ mod test { // Closed channel should be retained map.replace(b'h', closed("hello")).unwrap(); - // Return duration untill next channel expires + // Return duration until next channel expires assert_eq!(10, map.expire_channels().as_secs()); assert!(map.get(&b'w').unwrap().is_some()); assert!(map.get(&b'y').unwrap().is_some()); diff --git a/doc/Android.md b/doc/Android.md index db0368d418..0d5bef7f9d 100644 --- a/doc/Android.md +++ b/doc/Android.md @@ -75,7 +75,7 @@ Once you are satisfied with your code, you can compile it by running this comman ```sh ## build for 32bit and 64bit, x86 (emulator) and arm (most devices). $ cargo ndk -t armeabi-v7a -t arm64-v8a -t x86 -t x86_64 -o ./jniLibs build - ## build for 64bit arm only (recents devices). + ## build for 64bit arm only (recent devices). $ cargo ndk -t arm64-v8a -o ./jniLibs build ``` -- GitLab