Skip to content

Commit 85a9360

Browse files
plotskogwqhdevalence
authored andcommitted
Update doc(include) paths.
Since rust-lang/rust#60938 the path root changed and these new paths are required to compile on nightly. Closes #268.
1 parent b816a87 commit 85a9360

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/backend/vector/avx2/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// missing).
2020
#![cfg_attr(
2121
all(feature = "nightly", feature = "stage2_build"),
22-
doc(include = "../docs/avx2-notes.md")
22+
doc(include = "../../docs/avx2-notes.md")
2323
)]
2424

2525
pub(crate) mod field;

src/backend/vector/ifma/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
#![cfg_attr(
1111
all(feature = "nightly", feature = "stage2_build"),
12-
doc(include = "../docs/ifma-notes.md")
12+
doc(include = "../../docs/ifma-notes.md")
1313
)]
1414

1515
pub mod field;

src/backend/vector/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// missing).
2020
#![cfg_attr(
2121
all(feature = "nightly", feature = "stage2_build"),
22-
doc(include = "../docs/parallel-formulas.md")
22+
doc(include = "../../docs/parallel-formulas.md")
2323
)]
2424

2525
#[cfg(not(any(target_feature = "avx2", target_feature = "avx512ifma", rustdoc)))]

0 commit comments

Comments
 (0)