Skip to content

Commit 1a0de67

Browse files
authored
fix broken doc link (#41)
Signed-off-by: Teo Koon Peng <teokoonpeng@gmail.com>
1 parent 3d5425d commit 1a0de67

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
rustdocflags = ["-D", "warnings"]

.github/workflows/ci_linux.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,6 @@ jobs:
3838
- name: Test single_threaded_async
3939
run: cargo test --features single_threaded_async
4040

41+
- name: Build docs
42+
run: cargo doc
43+

src/chain/split.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ impl<'w, 's, 'a, 'b, T: 'static + Splittable> Iterator for SplitBuilder<'w, 's,
259259

260260
/// This tracks the connections that have been made to a split. This can be
261261
/// retrieved from [`SplitBuilder`] by calling [`SplitBuilder::outputs`].
262-
/// You can then continue building connections by calling [`SplitBuilder::build`].
262+
/// You can then continue building connections by calling [`SplitOutputs::build`].
263263
#[must_use]
264264
pub struct SplitOutputs<T: Splittable> {
265265
scope: Entity,

0 commit comments

Comments
 (0)