Merge branch 'typos' into 'main'

Fix typos

See merge request tpo/core/arti!301
This commit is contained in:
Nick Mathewson 2022-02-10 13:06:04 +00:00
commit 10293ca57e
2 changed files with 2 additions and 2 deletions

View File

@ -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());

View File

@ -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
```