Skip to content

Commit ce87442

Browse files
committed
address review comments
1 parent 09bee5a commit ce87442

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

mig/shared/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class RuntimeConfiguration:
4949
Resolve this dichotomy with this class - a Configuration instance will
5050
continue to represent the static data while an object that proxies its
5151
attributes and thus is entirely drop-in compatible with it can be handed
52-
to callers without being mixed in with the statuc data.
52+
to callers without being mixed in with the static data.
5353
"""
5454

5555
def __init__(self, configuration):
@@ -71,7 +71,7 @@ def context_get(self, context_key):
7171
return self._context.get(context_key, None)
7272

7373
def context_set(self, context_key, context_value):
74-
"""Attach a value as named namespace within the active congifuration.
74+
"""Attach a value as named namespace within the active configuration.
7575
"""
7676
self._context[context_key] = context_value
7777

tests/test_mig_shared_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# --- BEGIN_HEADER ---
44
#
55
# test_mig_shared_configuration - unit test of configuration
6-
# Copyright (C) 2003-2025 The MiG Project by the Science HPC Center at UCPH
6+
# Copyright (C) 2003-2026 The MiG Project by the Science HPC Center at UCPH
77
#
88
# This file is part of MiG.
99
#

0 commit comments

Comments
 (0)