Skip to content

Commit ba2d6e1

Browse files
authored
📝 typo/grammar
1 parent 91d40f4 commit ba2d6e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/docs/a8.primitive_data_types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ let f = 3.14; // Equals to `let f: f64 = 3.14;`
195195
let a = 5i8; // Equals to `let a: i8 = 5;`
196196

197197
let b = 100_000_000; // Equals to `let b = 100000000;`
198-
// 💡 The placements of _s are not strict. ex. 10000_0000 also valid.
198+
// 💡 The placements of _s are not strict. ex. 10000_0000 is also valid.
199199

200200
let pi = 3.141_592_653_59f64; // Equals to `let pi: f64 = 3.14159265359`
201201

0 commit comments

Comments
 (0)