1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-02-04 10:09:29 +02:00

Fixes typo in comment

This commit is contained in:
Mathias M 2022-12-23 12:03:03 +01:00 committed by GitHub
parent 61aa12e3f3
commit 69cd18f12a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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],
];