docs: Fix a few typos · pythonnet/pythonnet@60463a3

2 files changed

lines changed

Original file line numberDiff line numberDiff line change

@@ -121,7 +121,7 @@ def load(

121121
122122
123123

def unload() -> None:

124-

"""Explicitly unload a laoded runtime and shut down Python.NET"""

124+

"""Explicitly unload a loaded runtime and shut down Python.NET"""

125125
126126

global _RUNTIME, _LOADER_ASSEMBLY

127127

if _LOADER_ASSEMBLY is not None:

Original file line numberDiff line numberDiff line change

@@ -15,7 +15,7 @@ def test_relative_missing_import():

1515
1616

def test_import_all_on_second_time():

1717

"""Test import all attributes after a normal import without '*'.

18-

Due to import * only allowed at module level, the test body splited

18+

Due to import * only allowed at module level, the test body splitted

1919

to a module file."""

2020

from . import importtest

2121

del sys.modules[importtest.__name__]