Skip to content

Commit

Permalink
doc.rs link updates as per 0.1.3 release (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeeshanlakhani authored Apr 7, 2020
1 parent d183a35 commit a210eb7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions core/src/runtime/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ impl Runtime {
/// ```
///
/// [`PortQueue`]: crate::PortQueue
/// [`Pipeline`]: crate::Pipeline
/// [`Pipeline`]: crate::batch::Pipeline
pub fn add_pipeline_to_port<T: Pipeline + 'static, F>(
&mut self,
port: &str,
Expand Down Expand Up @@ -336,7 +336,7 @@ impl Runtime {
/// ```
///
/// [`PortQueues`]: crate::PortQueue
/// [`Pipeline`]: crate::Pipeline
/// [`Pipeline`]: crate::batch::Pipeline
pub fn add_pipeline_to_core<T: Pipeline + 'static, F>(
&mut self,
core: usize,
Expand Down Expand Up @@ -385,7 +385,7 @@ impl Runtime {
/// ```
///
/// [`PortQueues`]: crate::PortQueue
/// [`Pipeline`]: crate::Pipeline
/// [`Pipeline`]: crate::batch::Pipeline
/// [`batch::poll_fn`]: crate::batch::poll_fn
pub fn add_periodic_pipeline_to_core<T: Pipeline + 'static, F>(
&mut self,
Expand Down
2 changes: 1 addition & 1 deletion core/src/testils/criterion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub trait BencherExt {
/// over the input. See [`BatchSize`] for details on choosing the batch size.
///
/// [`BatchSize`]: https://docs.rs/criterion/latest/criterion/enum.BatchSize.html
/// [`pipeline combinators`]: crate::Batch
/// [`pipeline combinators`]: crate::batch::Batch
fn iter_proptest_combinators<R, S, O>(&mut self, strategy: S, routine: R, batch_size: usize)
where
R: FnMut(Poll<Receiver<Mbuf>>) -> O,
Expand Down

0 comments on commit a210eb7

Please sign in to comment.