Skip to content

Commit

Permalink
Fix typo in documentation (#5961)
Browse files Browse the repository at this point in the history
## Summary

Close unclosed inline code block that was causing the text not to render
properly.

## Test Plan

`mkdocs serve`
  • Loading branch information
tjkuson committed Jul 22, 2023
1 parent f1f89f2 commit 9bbb0a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use crate::checkers::ast::Checker;
/// ## Why is this bad?
/// To check if a variable is equal to one of many values, it is common to
/// write a series of equality comparisons (e.g.,
/// `foo == "bar" or foo == "baz").
/// `foo == "bar" or foo == "baz"`).
///
/// Instead, prefer to combine the values into a collection and use the `in`
/// operator to check for membership, which is more performant and succinct.
Expand Down

0 comments on commit 9bbb0a5

Please sign in to comment.