Fix typo in 061_coercions.zig

This commit is contained in:
Athir Saleem 2021-04-26 23:10:23 +10:00 committed by GitHub
parent 8dd47f8bcc
commit ad73d7eb1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
// 2. Numeric types can coerce to _larger_ types.
//
// var n1: u8 = 5;
// var n2: u16 = n8; // integer "widening"
// var n2: u16 = n1; // integer "widening"
//
// var n3: f16 = 42.0;
// var n4: f32 = n3; // float "widening"