aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <ratfactor@gmail.com>2022-07-31 09:38:15 -0400
committerGitHub <noreply@github.com>2022-07-31 09:38:15 -0400
commit93afa4a25f939565b6ec9a614a29cf260584a2e1 (patch)
treefd7d730f1701ca50b69c24d209c913a752bbded9 /exercises
parent93ca5f4c44281d372ba4c52f43c75030e18131f6 (diff)
parent87d520a23913a2b0d0b43dce2b17941e0e885019 (diff)
downloadziglings-93afa4a25f939565b6ec9a614a29cf260584a2e1.tar.gz
ziglings-93afa4a25f939565b6ec9a614a29cf260584a2e1.tar.bz2
ziglings-93afa4a25f939565b6ec9a614a29cf260584a2e1.tar.xz
ziglings-93afa4a25f939565b6ec9a614a29cf260584a2e1.zip
Merge pull request #103 from jtgoen/patch-1
Replace "−" with "-" in Assigment 3 tutorial text
Diffstat (limited to 'exercises')
-rw-r--r--exercises/003_assignment.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/exercises/003_assignment.zig b/exercises/003_assignment.zig
index 6a4364b..10ba8cb 100644
--- a/exercises/003_assignment.zig
+++ b/exercises/003_assignment.zig
@@ -12,7 +12,7 @@
// var bar: u8 = 20;
//
// Example: foo cannot be negative and can hold 0 to 255
-// bar CAN be negative and can hold −128 to 127
+// bar CAN be negative and can hold -128 to 127
//
// const foo: u8 = 20;
// const bar: i8 = -20;
@@ -26,7 +26,7 @@
// You can do just about any combination of these that you can think of:
//
// u32 can hold 0 to 4,294,967,295
-// i64 can hold −9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
+// i64 can hold -9,223,372,036,854,775,808 to 9,223,372,036,854,775,807
//
// Please fix this program so that the types can hold the desired values
// and the errors go away!