docs: fix 'into' grammar

This commit is contained in:
TomJGooding
2024-12-30 20:33:02 +00:00
parent 6bc95017a5
commit dcc24eae82
41 changed files with 70 additions and 70 deletions

View File

@@ -48,7 +48,7 @@ class DictionaryApp(App):
self.query_one("#results", Markdown).update(markdown)
def make_word_markdown(self, results: object) -> str:
"""Convert the results in to markdown."""
"""Convert the results into markdown."""
lines = []
if isinstance(results, dict):
lines.append(f"# {results['title']}")

View File

@@ -12,7 +12,7 @@ This is H3 Content
#### This is H4
Header level 4 content. Drilling down in to finer headings.
Header level 4 content. Drilling down into finer headings.
##### This is H5
@@ -85,7 +85,7 @@ In the future I think we could add controls to export the code, copy to the clip
```python
@lru_cache(maxsize=1024)
def split(self, cut_x: int, cut_y: int) -> tuple[Region, Region, Region, Region]:
"""Split a region in to 4 from given x and y offsets (cuts).
"""Split a region into 4 from given x and y offsets (cuts).
```
cut_x ↓