Skip to content

Commit bf380cc

Browse files
committed
fix typo in readme and bump version
1 parent 995ea37 commit bf380cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fluent-comparisons"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["geo-ant <geos.blog@posteo.de>"]
55
edition = "2018"
66
homepage = "https://github.com/geo-ant/fluent-comparisons"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ on the left hand side is provided.
2828
// the following assertions hold
2929
assert!(none_of!({1,2,3}>4));
3030
assert!(any_of!({1,2,3}.map(|x|x%2)==0));
31-
assert!(all_of({2,5,7}.satisfy(is_prime_number)));
31+
assert!(all_of!({2,5,7}.satisfy(is_prime_number)));
3232
```
3333

3434
## Brief Description and Key Advantages

0 commit comments

Comments
 (0)