Fix: Fixed a line in docs to make it more clear (#9073)

## Summary
I was using `ruff` on one of my repo's and found this small error. I
think the sentence can be made more clear.
This commit is contained in:
Sai-Suraj-27 2023-12-10 01:22:57 +05:30 committed by GitHub
parent f69a35a021
commit b7b137abc8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,7 +33,7 @@ use super::unittest_assert::UnittestAssert;
/// Checks for assertions that combine multiple independent conditions.
///
/// ## Why is this bad?
/// Composite assertion statements are harder debug upon failure, as the
/// Composite assertion statements are harder to debug upon failure, as the
/// failure message will not indicate which condition failed.
///
/// ## Example