Skip to content

Commit a210eb7

Browse files
authoredApr 7, 2020
doc.rs link updates as per 0.1.3 release (#73)
1 parent d183a35 commit a210eb7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎core/src/runtime/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ impl Runtime {
228228
/// ```
229229
///
230230
/// [`PortQueue`]: crate::PortQueue
231-
/// [`Pipeline`]: crate::Pipeline
231+
/// [`Pipeline`]: crate::batch::Pipeline
232232
pub fn add_pipeline_to_port<T: Pipeline + 'static, F>(
233233
&mut self,
234234
port: &str,
@@ -336,7 +336,7 @@ impl Runtime {
336336
/// ```
337337
///
338338
/// [`PortQueues`]: crate::PortQueue
339-
/// [`Pipeline`]: crate::Pipeline
339+
/// [`Pipeline`]: crate::batch::Pipeline
340340
pub fn add_pipeline_to_core<T: Pipeline + 'static, F>(
341341
&mut self,
342342
core: usize,
@@ -385,7 +385,7 @@ impl Runtime {
385385
/// ```
386386
///
387387
/// [`PortQueues`]: crate::PortQueue
388-
/// [`Pipeline`]: crate::Pipeline
388+
/// [`Pipeline`]: crate::batch::Pipeline
389389
/// [`batch::poll_fn`]: crate::batch::poll_fn
390390
pub fn add_periodic_pipeline_to_core<T: Pipeline + 'static, F>(
391391
&mut self,

‎core/src/testils/criterion.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub trait BencherExt {
4949
/// over the input. See [`BatchSize`] for details on choosing the batch size.
5050
///
5151
/// [`BatchSize`]: https://docs.rs/criterion/latest/criterion/enum.BatchSize.html
52-
/// [`pipeline combinators`]: crate::Batch
52+
/// [`pipeline combinators`]: crate::batch::Batch
5353
fn iter_proptest_combinators<R, S, O>(&mut self, strategy: S, routine: R, batch_size: usize)
5454
where
5555
R: FnMut(Poll<Receiver<Mbuf>>) -> O,

0 commit comments

Comments
 (0)
Please sign in to comment.