1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-25 19:04:32 +02:00

Fix comma position (#2233)

Co-authored-by: Kamil Panek <panek.kam@gmail.com>
This commit is contained in:
Kamil Panek 2024-07-22 13:29:13 +02:00 committed by GitHub
parent 1e1854557d
commit 16c4724300
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ This functionality uses the `IntoIterator` trait, but we haven't covered that
yet.
The `assert_ne!` macro is new here. There are also `assert_eq!` and `assert!`
macros. These are always checked while, debug-only variants like `debug_assert!`
macros. These are always checked, while debug-only variants like `debug_assert!`
compile to nothing in release builds.
</details>