Skip to content

Commit cb15975

Browse files
authored
[linalg.helpers.mandates] Fix typos (#7372)
1 parent aa53618 commit cb15975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/numerics.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12418,7 +12418,7 @@
1241812418
bool @\exposid{compatible-static-extents}@(size_t r1, size_t r2) { // \expos
1241912419
return MDS1::static_extent(r1) == dynamic_extent ||
1242012420
MDS2::static_extent(r2) == dynamic_extent ||
12421-
MDS1::static_extent(r1) == MDS2::static_extent(r2));
12421+
MDS1::static_extent(r1) == MDS2::static_extent(r2);
1242212422
}
1242312423

1242412424
template<@\exposconcept{in-vector}@ In1, @\exposconcept{in-vector}@ In2, @\exposconcept{in-vector}@ Out>
@@ -12495,7 +12495,7 @@
1249512495
constexpr bool @\exposid{multipliable}@( // \expos
1249612496
const @\exposconcept{in-matrix}@ auto& in_mat1, const @\exposconcept{in-matrix}@ auto& in_mat2, const @\exposconcept{in-matrix}@ auto& out_mat) {
1249712497
return out_mat.extent(0) == in_mat1.extent(0) && out_mat.extent(1) == in_mat2.extent(1) &&
12498-
in1_mat.extent(1) == in_mat2.extent(0);
12498+
in_mat1.extent(1) == in_mat2.extent(0);
1249912499
}
1250012500
\end{codeblock}
1250112501

0 commit comments

Comments
 (0)