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 @@ -31,9 +31,9 @@ native "rust" mod rustrt {
31
31
32
32
33
33
// The name of a test. By convention this follows the rules for rust
34
- // paths, i.e it should be a series of identifiers seperated by double
34
+ // paths; i.e. it should be a series of identifiers seperated by double
35
35
// colons. This way if some test runner wants to arrange the tests
36
- // heirarchically it may.
36
+ // hierarchically it may.
37
37
type test_name = str ;
38
38
39
39
// A function that runs a test. If the function returns successfully,
@@ -90,7 +90,7 @@ tag test_result { tr_ok; tr_failed; tr_ignored; }
90
90
type joinable = ( task, comm:: port < task:: task_notification > ) ;
91
91
92
92
// To get isolation and concurrency tests have to be run in their own tasks.
93
- // In cases where test functions and closures it is not ok to just dump them
93
+ // In cases where test functions are closures it is not ok to just dump them
94
94
// into a task and run them, so this transformation gives the caller a chance
95
95
// to create the test task.
96
96
type test_to_task = fn ( fn ( ) ) -> joinable;
You can’t perform that action at this time.
0 commit comments