Skip to content

Commit

Permalink
docs and accounts (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
richardpringle authored Sep 5, 2023
1 parent 9880cdf commit 5e2d746
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
- name: Run tests
run: cargo test --verbose

e2e:
examples:
needs: build
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -174,7 +174,4 @@ jobs:
~/.cargo/git/db/
target/
key: ${{ needs.build.outputs.cache-key }}
- name: Lint intra docs links
run: cargo rustdoc -p firewood --lib -- -D rustdoc::broken-intra-doc-links
- name: Lint missing crate-level docs
run: cargo rustdoc -p firewood --lib -- -D rustdoc::missing-crate-level-docs
- run: RUSTDOCFLAGS="-D warnings" cargo doc --all --document-private-items --no-deps
2 changes: 1 addition & 1 deletion firewood/src/db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ fn get_sub_universe_from_empty_delta(
/// DB-wide metadata, it keeps track of the roots of the top-level tries.
#[derive(Debug)]
struct DbHeader {
/// The root node of the account model storage. (Where the values are [Account] objects, which
/// The root node of the account model storage. (Where the values are `Account` objects, which
/// may contain the root for the secondary trie.)
acc_root: DiskAddress,
/// The root node of the generic key-value store.
Expand Down

0 comments on commit 5e2d746

Please sign in to comment.