Fix incorrect comment

bit-reversal permutation is not idempotent
This commit is contained in:
Ramana Kumar 2022-09-27 12:13:56 +01:00
parent 6c2b46ae32
commit 9ac605cc5e
No known key found for this signature in database
GPG Key ID: ED471C788B900433
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ def reverse_bits(n: int, order: int) -> int:
```python
def bit_reversal_permutation(l: Sequence[T]) -> Sequence[T]:
"""
Return a copy with bit-reversed permutation. This operation is idempotent.
Return a copy with bit-reversed permutation. The permutation is an involution (inverts itself).
The input and output are a sequence of generic type ``T`` objects.
"""