Skip to content

Commit 262118a

Browse files
authored
correct order in which alternate params etc are specified
1 parent f3401f6 commit 262118a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

easybuild/framework/easyconfig/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
# alternate easyconfig parameters, and their non-deprecated equivalents
4646
ALTERNATE_PARAMETERS = {
47-
# <equivalent_param>: <new_param>,
47+
# <new_param>: <equivalent_param> ,
4848
}
4949

5050
# deprecated easyconfig parameters, and their replacements

easybuild/framework/easyconfig/templates.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163

164164
# alternate templates, and their equivalents
165165
ALTERNATE_TEMPLATES = {
166-
# <equivalent_template>: <new_template>,
166+
# <new_template>: <equivalent_template> ,
167167
}
168168

169169
# deprecated templates, and their replacements
@@ -173,7 +173,7 @@
173173

174174
# alternate template constants, and their equivalents
175175
ALTERNATE_TEMPLATE_CONSTANTS = {
176-
# <equivalent_template_constant>: <new_template_constant>,
176+
# <new_template_constant>: <equivalent_template_constant>,
177177
}
178178

179179
# deprecated template constants, and their replacements

0 commit comments

Comments
 (0)