Fix a few typos found by codespell (#11404)

## Summary

Just fix typos.

## Test Plan

CI jobs.

---------

Co-authored-by: Dhruv Manilawala <dhruvmanila@gmail.com>
This commit is contained in:
Dimitri Papadopoulos Orfanos 2024-05-13 15:22:35 +02:00 committed by GitHub
parent 6ecb4776de
commit 3b0584449d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 71 additions and 71 deletions

View file

@ -2326,7 +2326,7 @@ impl Ranged for ParsedExpr {
/// See: <https://docs.python.org/3/reference/expressions.html#operator-precedence>
#[derive(Debug, Ord, Eq, PartialEq, PartialOrd, Copy, Clone)]
pub(super) enum OperatorPrecedence {
/// The initital precedence when parsing an expression.
/// The initial precedence when parsing an expression.
Initial,
/// Precedence of boolean `or` operator.
Or,