summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--oryxc/src/compiler.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/oryxc/src/compiler.rs b/oryxc/src/compiler.rs
index 0d1c65d..3f5ca40 100644
--- a/oryxc/src/compiler.rs
+++ b/oryxc/src/compiler.rs
@@ -104,7 +104,8 @@ impl CompilerState {
}
}
-/// Initialize compiler state and drive all source files through the pipeline.
+/// Initialize compiler state and drive all source files through the
+/// pipeline.
pub fn start<T>(paths: T, flags: Flags)
where
T: IntoIterator<Item = OsString>,
@@ -238,7 +239,8 @@ fn worker_loop(
}
}
-/// Get next available job or steal from the global queue or peers if local queue is empty.
+/// Get next available job or steal from the global queue or peers if
+/// local queue is empty.
fn find_task(
localq: &Worker<Job>,
globalq: &Injector<Job>,