Commit 4770a87
committed
fix(doctest): use ndarray::hpc:: not crate::hpc:: in stream doctests (codex P2)
Codex P2 flagged that doctest examples compile as an external test
crate, so `crate::hpc::...` doesn't resolve — `cargo test --doc`
would fail with "could not find hpc in the crate root". W-F5's
InferenceStream got this right; W-F4 (QualiaStream) and W-F6
(SplatFieldStream) used `crate::hpc::...` and would have broken
doctest CI.
Two doctest import paths corrected to use the external crate
name `ndarray::hpc::...` (matching the W-F5 pattern).1 parent 7ce2c7a commit 4770a87
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
39 | 39 | | |
40 | 40 | | |
41 | 41 | | |
| |||
0 commit comments