Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in constant_doubles.c #75

Merged
merged 2 commits into from
Sep 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/chapter_13/valid/constants/constant_doubles.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
int main(void) {
/* Define constant doubles in a few different formats,
* and make sure we can lex all of them.
* Note that these can all be respresented exactly,
* without rounding
* Note that these can all be represented exactly,
* without rounding.
*/

/* Several ways to define 1 */
Expand Down Expand Up @@ -31,4 +31,4 @@ int main(void) {

return 0;

}
}
Loading