diff options
| author | Marek Barvíř <barvirm@gmail.com> | 2023-04-18 11:19:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-18 11:19:16 +0200 |
| commit | dd5e9723e09b60799277b44dcd446bccc0ab771e (patch) | |
| tree | 2fc4d71844dc3daa80722c18ab3aa235346abe3c /library/src/math/underover.rs | |
| parent | 56673bcdf5a8be0f89a3781a5ce392736823dc44 (diff) | |
clippy::wrong_self_convention (#857)
Diffstat (limited to 'library/src/math/underover.rs')
| -rw-r--r-- | library/src/math/underover.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/src/math/underover.rs b/library/src/math/underover.rs index 654da354..a8d7b71c 100644 --- a/library/src/math/underover.rs +++ b/library/src/math/underover.rs @@ -242,7 +242,7 @@ pub(super) fn stack( let points = alignments(&rows); let rows: Vec<_> = rows .into_iter() - .map(|row| row.to_aligned_frame(ctx, &points, align)) + .map(|row| row.into_aligned_frame(ctx, &points, align)) .collect(); for row in &rows { |
