Skip to content

Commit

Permalink
Bump codespell from 2.2.5 to 2.2.6 (#1726)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: davfsa <[email protected]>
  • Loading branch information
dependabot[bot] and davfsa authored Oct 3, 2023
1 parent 1a5dc27 commit 43d655c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dev-requirements/codespell.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
codespell==2.2.5
codespell==2.2.6
12 changes: 6 additions & 6 deletions hikari/internal/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,18 +565,18 @@ class Flag(metaclass=_FlagMeta):
-----------------------------
* `e1 & e2` :
Bitwise `AND` operation. Will return a member that contains all flags
that are common between both oprands on the values. This also works with
one of the oprands being an `int`eger. You may instead use
that are common between both operands on the values. This also works with
one of the operands being an `int`eger. You may instead use
the `intersection` method.
* `e1 | e2` :
Bitwise `OR` operation. Will return a member that contains all flags
that appear on at least one of the oprands. This also works with
one of the oprands being an `int`eger. You may instead use
that appear on at least one of the operands. This also works with
one of the operands being an `int`eger. You may instead use
the `union` method.
* `e1 ^ e2` :
Bitwise `XOR` operation. Will return a member that contains all flags
that only appear on at least one and at most one of the oprands.
This also works with one of the oprands being an `int`eger.
that only appear on at least one and at most one of the operands.
This also works with one of the operands being an `int`eger.
You may instead use the `symmetric_difference` method.
* `~e` :
Return the inverse of this value. This is equivalent to disabling all
Expand Down

0 comments on commit 43d655c

Please sign in to comment.