Skip to content

Commit

Permalink
Tiny fix in S04_Bases.lean
Browse files Browse the repository at this point in the history
Fixed an example so that it is about vector sum, not matrix sum.
  • Loading branch information
LessnessRandomness committed Feb 3, 2025
1 parent 024eeab commit 343d88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MIL/C09_Linear_Algebra/S04_Bases.lean
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ EXAMPLES: -/
section matrices

-- Adding vectors
#eval !![1, 2] + !![3, 4] -- !![4, 6]
#eval ![1, 2] + ![3, 4] -- ![4, 6]

-- Adding matrices
#eval !![1, 2; 3, 4] + !![3, 4; 5, 6] -- !![4, 6; 8, 10]
Expand Down

0 comments on commit 343d88a

Please sign in to comment.