diff options
| author | Leedehai <18319900+Leedehai@users.noreply.github.com> | 2024-07-15 06:00:37 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-15 10:00:37 +0000 |
| commit | f3863f14aff07ec2d0260e0edf9fe3f4f7205d8e (patch) | |
| tree | 08f5243fe7673e5e0c7e56f798f099fa0d8b7d1a | |
| parent | f0407d4949cce8014e2a4fdef8c00c955d870127 (diff) | |
Remove an unnecessary mutable specifier (#4557)
| -rw-r--r-- | crates/typst/src/math/attach.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst/src/math/attach.rs b/crates/typst/src/math/attach.rs index 4d5bf299..035b7812 100644 --- a/crates/typst/src/math/attach.rs +++ b/crates/typst/src/math/attach.rs @@ -350,7 +350,7 @@ fn layout_attachments( } fn attach_top_and_bottom( - ctx: &mut MathContext, + ctx: &MathContext, styles: StyleChain, base: MathFragment, t: Option<MathFragment>, |
