Skip to content

Commit e1d6018

Browse files
committed
Fix spelling typos
1 parent f804ae7 commit e1d6018

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/docbuild/config/load.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def load_and_merge_configs(
5252
'Please provide at least one path to load the config files.',
5353
)
5454

55-
# Create a carthesian product of paths and default filenames:
55+
# Create a cartesian product of paths and default filenames:
5656
for path, cfgfile in product(paths, defaults):
5757
path = Path(path).expanduser().resolve() / cfgfile
5858

src/docbuild/config/xml/data/product-config-schema.rnc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ ds.acronym =
309309
}
310310

311311
ds.maintainers =
312-
## Collection of email addresses to send mail about buld failures to
312+
## Collection of email addresses to send mail about build failures to
313313
element maintainers {
314314
ds.contact+
315315
}

src/docbuild/models/lifecycle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def from_str(cls: 'LifecycleFlag', value: str) -> 'LifecycleFlag':
3939
4040
The string accepts the values 'supported', 'beta', 'hidden',
4141
'unsupported', or a combination of them separated by a comma or pipe.
42-
Addtionally, the class knows the values "unknown".
42+
Additionally, the class knows the values "unknown".
4343
An empty string, "", is equivalent to "unknown".
4444
4545
Examples:

src/docbuild/utils/contextmgr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class TimerData:
3636
def make_timer(
3737
name: str, method: Callable[[], float] = time.perf_counter
3838
) -> Callable[[], AbstractContextManager[TimerData]]:
39-
"""Create independant context managers to measure elapsed time.
39+
"""Create independent context managers to measure elapsed time.
4040
4141
Each timer is independent and can be used in a context manager.
4242
The name is used to identify the timer.

0 commit comments

Comments
 (0)