Fixed a typo #26

This commit is contained in:
Vishal Sodani 2021-02-26 10:48:49 +05:30 committed by GitHub
parent 3b496f65b3
commit c80e43ef65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@
//
// into this:
//
// point1 = Point{ .x=3, .y=16, .y=27 };
// point2 = Point{ .x=7, .y=13, .y=34 };
// point1 = Point{ .x=3, .y=16, .z=27 };
// point2 = Point{ .x=7, .y=13, .z=34 };
//
// The Point above is an example of a "struct" (short for "structure").
// Here's how it could have been defined: