diff options
| author | Aaron Manning <contact@aaronmanning.net> | 2024-09-30 21:41:59 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-30 11:41:59 +0000 |
| commit | d5b1bf314e50b96207a898f02dac2c8cdca3a568 (patch) | |
| tree | 952ff80efc2e1f49338360b1603f11caf1b397b1 | |
| parent | 0b151b866ad5b8c94196404ceb42f730d6761247 (diff) | |
Fix reference documentation mathematical error (#5072)
| -rw-r--r-- | crates/typst/src/model/reference.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst/src/model/reference.rs b/crates/typst/src/model/reference.rs index 8194eec5..bc1919d6 100644 --- a/crates/typst/src/model/reference.rs +++ b/crates/typst/src/model/reference.rs @@ -49,7 +49,7 @@ use crate::text::TextElem; /// == Performance <perf> /// @slow demonstrates what slow /// software looks like. -/// $ O(n) = 2^n $ <slow> +/// $ T(n) = O(2^n) $ <slow> /// /// #bibliography("works.bib") /// ``` |
