diff --git a/README.md b/README.md index 149024e..5aa483d 100644 --- a/README.md +++ b/README.md @@ -272,7 +272,7 @@ A Migration Python script might be needed or looked into. - My Presentation and Virtual Confrence: https://www.youtube.com/watch?v=Cbb6trkKWXY ## Contributing -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 +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 ### How Can I contribute? - I make and branch and make edits and then I do a pull requests before I just step in and add something new. diff --git a/tests/test_aiomultiprocess.py b/tests/test_aiomultiprocess.py index 4908ac1..5885b1a 100644 --- a/tests/test_aiomultiprocess.py +++ b/tests/test_aiomultiprocess.py @@ -22,7 +22,7 @@ class _Test_Multiprocessing: """Used for Testing aiomultiprocessing""" @unittest.skip( - "aiomultiprocess has an import bug releated to having a tests module" + "aiomultiprocess has an import bug related to having a tests module" ) def test_process_spawning(self): # See: diff --git a/tests/test_base.py b/tests/test_base.py index 327d7e6..b0ca5d3 100644 --- a/tests/test_base.py +++ b/tests/test_base.py @@ -580,7 +580,7 @@ async def coro(): self.assertFalse(isinstance(task, MyTask)) self.loop.run_until_complete(task) - # NOTE: one of my plans invovles migrating to pytest in 2026... + # NOTE: one of my plans involves migrating to pytest in 2026... @unittest.skip("Fixing this is on my todo list for 0.2.0") def test_set_task_name(self): self.loop._process_events = mock.Mock() diff --git a/winloop/handles/process.pyx b/winloop/handles/process.pyx index 127bfd7..87ba15e 100644 --- a/winloop/handles/process.pyx +++ b/winloop/handles/process.pyx @@ -500,7 +500,7 @@ cdef class UVProcessTransport(UVProcess): # When a stdio is in a gui-like state without a console. # using a standard redirect is not a good idea. This at least # is a better workaround that is a bit cleaner than doing what the - # python standard libary subprocess does with the _get_handles function + # python standard library subprocess does with the _get_handles function # on windows. SEE: https://github.com/Vizonex/Winloop/issues/126 io[0] = self._file_devnull() diff --git a/winloop/includes/compat.h b/winloop/includes/compat.h index effbc8d..b82a20f 100644 --- a/winloop/includes/compat.h +++ b/winloop/includes/compat.h @@ -173,7 +173,7 @@ void PyOS_AfterFork_Child() { /* For some strange reason this structure does not want to show up * when compiling in debug mode on 3.13+ on windows so lets redefine it as a macro */ -/* IDK How big to make this so will just leave it at 1 incase somehow accidently exposed */ +/* IDK How big to make this so will just leave it at 1 in case somehow accidentally exposed */ #ifndef __Pyx_MonitoringEventTypes_CyGen_count #define __Pyx_MonitoringEventTypes_CyGen_count 1 #endif /* __Pyx_MonitoringEventTypes_CyGen_count */