@@ -99,7 +99,7 @@ def check(dependency=None, timeout=60, max_log_lines=100):
99
99
This is particularly useful when writing e.g., a ``compiles`` check that compiles a
100
100
student's program (and checks that it compiled successfully). Any checks that run the
101
101
student's program will logically depend on this check, and since they inherit the
102
- resulting filesystem of the check, they will immidiately have access to the compiled
102
+ resulting filesystem of the check, they will immediately have access to the compiled
103
103
program without needing to recompile.
104
104
105
105
Example usage::
@@ -235,7 +235,7 @@ def build_subgraph(self, targets):
235
235
236
236
237
237
def dependencies_of (self , targets ):
238
- """Get all unique dependencies of the targetted checks (tartgets)."""
238
+ """Get all unique dependencies of the targeted checks (tartgets)."""
239
239
inverse_graph = self ._create_inverse_dependency_graph ()
240
240
deps = set ()
241
241
for target in targets :
@@ -283,7 +283,7 @@ def __enter__(self):
283
283
self ._cd_manager = lib50 .cd (internal .run_root_dir )
284
284
self ._cd_manager .__enter__ ()
285
285
286
- # TODO: Naming the module "checks" is arbitray . Better name?
286
+ # TODO: Naming the module "checks" is arbitrary . Better name?
287
287
self .checks_spec = importlib .util .spec_from_file_location ("checks" , self .checks_path )
288
288
289
289
# Clear check_names, import module, then save check_names. Not thread safe.
@@ -348,7 +348,7 @@ def _store_attributes(self):
348
348
in case multiprocessing is using spawn as its starting method.
349
349
"""
350
350
351
- # Attributes only need to be passed explicitely to child processes when using spawn
351
+ # Attributes only need to be passed explicitly to child processes when using spawn
352
352
if multiprocessing .get_start_method () != "spawn" :
353
353
return
354
354
0 commit comments