1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-15 13:50:27 +02:00

Merge pull request #46 from matm/patch-1

Fixes typo in comment
This commit is contained in:
Martin Geisler
2022-12-23 14:26:30 +01:00
committed by GitHub

View File

@ -55,7 +55,7 @@ fn test_transpose() {
// ANCHOR: main
fn main() {
let matrix = [
[101, 102, 103], // <-- the comment make rustfmt add a newline
[101, 102, 103], // <-- the comment makes rustfmt add a newline
[201, 202, 203],
[301, 302, 303],
];