Skip to content

Commit 5c044d1

Browse files
authored
Merge pull request #146 from evnchn/fix-codespell-typos
Fix typo
2 parents 3e08927 + 9680cb4 commit 5c044d1

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ A Migration Python script might be needed or looked into.
272272
- My Presentation and Virtual Confrence: https://www.youtube.com/watch?v=Cbb6trkKWXY
273273

274274
## Contributing
275-
I put my heart and soul into this library ever since it began and any help is apperciated and means a lot to me, I have other things I wish to explore so every little bit helps
275+
I put my heart and soul into this library ever since it began and any help is appreciated and means a lot to me, I have other things I wish to explore so every little bit helps
276276

277277
### How Can I contribute?
278278
- I make and branch and make edits and then I do a pull requests before I just step in and add something new.

tests/test_aiomultiprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class _Test_Multiprocessing:
2222
"""Used for Testing aiomultiprocessing"""
2323

2424
@unittest.skip(
25-
"aiomultiprocess has an import bug releated to having a tests module"
25+
"aiomultiprocess has an import bug related to having a tests module"
2626
)
2727
def test_process_spawning(self):
2828
# See:

tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ async def coro():
580580
self.assertFalse(isinstance(task, MyTask))
581581
self.loop.run_until_complete(task)
582582

583-
# NOTE: one of my plans invovles migrating to pytest in 2026...
583+
# NOTE: one of my plans involves migrating to pytest in 2026...
584584
@unittest.skip("Fixing this is on my todo list for 0.2.0")
585585
def test_set_task_name(self):
586586
self.loop._process_events = mock.Mock()

winloop/handles/process.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ cdef class UVProcessTransport(UVProcess):
500500
# When a stdio is in a gui-like state without a console.
501501
# using a standard redirect is not a good idea. This at least
502502
# is a better workaround that is a bit cleaner than doing what the
503-
# python standard libary subprocess does with the _get_handles function
503+
# python standard library subprocess does with the _get_handles function
504504
# on windows. SEE: https://github.com/Vizonex/Winloop/issues/126
505505

506506
io[0] = self._file_devnull()

winloop/includes/compat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ void PyOS_AfterFork_Child() {
173173
/* For some strange reason this structure does not want to show up
174174
* when compiling in debug mode on 3.13+ on windows so lets redefine it as a macro */
175175

176-
/* IDK How big to make this so will just leave it at 1 incase somehow accidently exposed */
176+
/* IDK How big to make this so will just leave it at 1 in case somehow accidentally exposed */
177177
#ifndef __Pyx_MonitoringEventTypes_CyGen_count
178178
#define __Pyx_MonitoringEventTypes_CyGen_count 1
179179
#endif /* __Pyx_MonitoringEventTypes_CyGen_count */

0 commit comments

Comments
 (0)