File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ def _split_boards(resolution_order, tgt):
163
163
def _generate_hierarchy_string (mcus , boards ):
164
164
global_errors = []
165
165
if len (mcus ) < 1 :
166
- global_errors .append ("No MCUS found in heirarchy " )
166
+ global_errors .append ("No MCUS found in hierarchy " )
167
167
mcus_string = "??? ->"
168
168
elif len (mcus ) > 3 :
169
169
global_errors .append ("No name for targets %s" % ", " .join (mcus [3 :]))
@@ -174,7 +174,7 @@ def _generate_hierarchy_string(mcus, boards):
174
174
mcus_string = MCU_FORMAT_STRING [len (mcus )] % tuple (mcus )
175
175
176
176
if len (boards ) < 1 :
177
- global_errors .append ("no boards found in heirarchy " )
177
+ global_errors .append ("no boards found in hierarchy " )
178
178
boards_string = "???"
179
179
elif len (boards ) > 2 :
180
180
global_errors .append ("no name for targets %s" % ", " .join (boards [2 :]))
@@ -187,7 +187,7 @@ def _generate_hierarchy_string(mcus, boards):
187
187
188
188
189
189
def check_hierarchy (tgt ):
190
- """Atempts to assign labels to the heirarchy """
190
+ """Atempts to assign labels to the hierarchy """
191
191
resolution_order = copy (tgt .resolution_order_names [:- 1 ])
192
192
mcus , boards = _split_boards (resolution_order , tgt )
193
193
You can’t perform that action at this time.
0 commit comments