Merge pull request #149 from cdmurph32/patch-1

Fix typos
pull/155/head
Dhghomon 1 year ago committed by GitHub
commit 3cd54565cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11821,7 +11821,7 @@ The `Serialize` and `Deserialize` traits are what make the conversion easy. (Tha
### regex
The [regex](https://crates.io/crates/regex) crate lets you search through text using [regular expressions](https://en.wikipedia.org/wiki/Regular_expression). With that you can get matches for something like `colour`, `color`, `colours` and `colors` through a single search. Regular expressions are a whole other language have to learn that too if you want to use them.
The [regex](https://crates.io/crates/regex) crate lets you search through text using [regular expressions](https://en.wikipedia.org/wiki/Regular_expression). With that you can get matches for something like `colour`, `color`, `colours` and `colors` through a single search. Regular expressions are a whole other language to learn if you want to use them.
### chrono
@ -11889,7 +11889,7 @@ Nicosia
If you want to get variables from an array, you can put their names inside `[]` to destructure it. This is the same as using a tuple in `match` statements or to get variables from a struct.
If you want to get variables from an array, you can put their names inside `[]` to destructure it. This is the same as using a tuple in `match` statements or destructuring to get variables from a struct.
```rust
fn main() {

Loading…
Cancel
Save