diff --git a/crates/tor-chanmgr/src/mgr/map.rs b/crates/tor-chanmgr/src/mgr/map.rs index 4862839e6..47fcb921a 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 db0368d41..0d5bef7f9 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 ```