Skip to content

Commit fde3000

Browse files
committed
Auto merge of #105794 - ChrisDenton:internal-doc, r=jyn514
Add CI test for documentation of hidden items in std Fixes #87844 r? `@jyn514`
2 parents 74699b8 + 8534fd3 commit fde3000

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/fmt/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ impl<'a> Arguments<'a> {
405405
/// 1. The `pieces` slice must be at least as long as `fmt`.
406406
/// 2. Every [`rt::v1::Argument::position`] value within `fmt` must be a
407407
/// valid index of `args`.
408-
/// 3. Every [`Count::Param`] within `fmt` must contain a valid index of
408+
/// 3. Every [`rt::v1::Count::Param`] within `fmt` must contain a valid index of
409409
/// `args`.
410410
#[doc(hidden)]
411411
#[inline]

src/ci/docker/host-x86_64/mingw-check/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ENV SCRIPT python3 ../x.py --stage 2 test src/tools/expand-yaml-anchors && \
4646
python3 ../x.py test --stage 2 src/tools/tidy && \
4747
python3 ../x.py test --stage 0 core alloc std test proc_macro && \
4848
# Build both public and internal documentation.
49-
RUSTDOCFLAGS="--document-private-items" python3 ../x.py doc --stage 0 library/test && \
49+
RUSTDOCFLAGS=\"--document-private-items --document-hidden-items\" python3 ../x.py doc --stage 0 library/test && \
5050
/scripts/validate-toolstate.sh && \
5151
/scripts/validate-error-codes.sh && \
5252
reuse lint && \

0 commit comments

Comments
 (0)