Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
env:
MDBOOK_VERSION: 0.4.48
MDBOOK_ADMONISH_VERSION: 1.19.0
MDBOOK_LINKCHECK_VERSION: 0.7.7
RUST_VERSION: 1.84.0
steps:
- uses: actions/checkout@v4
Expand All @@ -36,6 +37,7 @@ jobs:
run: |
cargo install mdbook --version ${MDBOOK_VERSION}
cargo install mdbook-admonish --version ${MDBOOK_ADMONISH_VERSION}
cargo install mdbook-linkcheck --version ${MDBOOK_LINKCHECK_VERSION}

- name: Build book
run: |
Expand Down
2 changes: 2 additions & 0 deletions docs/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ create-missing = false
git-repository-url = "https://github.com/dfinity/stable-structures"
additional-css = ["./mdbook-admonish.css"]

[output.linkcheck]

[preprocessor]

[preprocessor.admonish]
Expand Down
2 changes: 1 addition & 1 deletion docs/src/concepts/memory-manager.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Memory Manager

As mentioned in the previous section, each stable structure requires its own dedicated `Memory` instance.
This is an intentional design decision that limits [the blast radius](./design-principles.md) of potential bugs, ensuring that issues only affect the specific stable structure and its associated memory, not other stable structures.
This is an intentional design decision that limits [the blast radius](../introduction/design-principles.md) of potential bugs, ensuring that issues only affect the specific stable structure and its associated memory, not other stable structures.

## Overview

Expand Down