Skip to content

Commit 1760406

Browse files
authored
Merge pull request #190 from tmandry/actually-document-private-items
Actually document private items
2 parents e9c0a34 + d4ffef3 commit 1760406

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ script:
66
- cd chalk-engine && RUSTC_BOOTSTRAP=1 cargo build --no-default-features && cd ..
77
- cd chalk-engine && RUSTC_BOOTSTRAP=1 cargo build --all-features && cd ..
88
- RUSTC_BOOTSTRAP=1 cargo test --all
9-
- RUSTC_BOOTSTRAP=1 cargo doc --document-private-items
9+
- RUSTC_BOOTSTRAP=1 cargo doc --all --document-private-items
1010
deploy:
1111
- provider: script
1212
script: mkdir -p target/gh-pages && mv target/doc target/gh-pages/

Cargo.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rust_ir.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,8 @@ crate trait IntoWhereClauses {
198198
impl IntoWhereClauses for InlineBound {
199199
type Output = WhereClause;
200200

201-
/// Applies the `InlineBound` to `self_ty` and lowers to a [`DomainGoal`].
201+
/// Applies the `InlineBound` to `self_ty` and lowers to a
202+
/// [`chalk_ir::DomainGoal`].
202203
///
203204
/// Because an `InlineBound` does not know anything about what it's binding,
204205
/// you must provide that type as `self_ty`.

0 commit comments

Comments
 (0)