posts: fix typos
All checks were successful
ci/woodpecker/push/deploy/2 Pipeline was successful

This commit is contained in:
Bruno BELANYI 2024-11-08 16:06:19 +00:00
parent af4e13d6e8
commit 39944ed35d
3 changed files with 5 additions and 5 deletions

View file

@ -133,7 +133,7 @@ and moving the start of the gap further right.
```python
def insert(self, val: str) -> None:
# Ensure we have enouh space to insert the whole string
# Ensure we have enough space to insert the whole string
if len(val) > self.gap_length:
self.grow(max(self.capacity * 2, self.string_length + len(val)))
# Fill the gap with the given string
@ -163,7 +163,7 @@ def delete(self, dist: int = 1) -> None:
### Moving the cursor
Moving the cursor along the buffer will shift letters from one side of the gap
to the other, moving them accross from prefix to suffix and back.
to the other, moving them across from prefix to suffix and back.
I find Python's list slicing not quite as elegant to read as a `memmove`, though
it does make for a very small and efficient implementation.