aboutsummaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2021-03-05 12:55:49 -0500
committerDave Gauer <dave@ratfactor.com>2021-03-05 12:55:49 -0500
commit0616dc2d6eed6e7ed5665a2225dccf42d8d091bc (patch)
tree54a1b98001b129f29d247cac1303650a2f3a8d22 /exercises
parent830109128d71a528b1ce3762fc489264f09d4419 (diff)
downloadziglings-0616dc2d6eed6e7ed5665a2225dccf42d8d091bc.tar.gz
ziglings-0616dc2d6eed6e7ed5665a2225dccf42d8d091bc.tar.bz2
ziglings-0616dc2d6eed6e7ed5665a2225dccf42d8d091bc.tar.xz
ziglings-0616dc2d6eed6e7ed5665a2225dccf42d8d091bc.zip
ex51 fixed wording
Diffstat (limited to 'exercises')
-rw-r--r--exercises/51_values.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/exercises/51_values.zig b/exercises/51_values.zig
index bb0c98e..0fcaa76 100644
--- a/exercises/51_values.zig
+++ b/exercises/51_values.zig
@@ -10,10 +10,10 @@
//
// Ah, that's better. Now we can look at some familiar Zig code.
//
-// @import() adds the imported code to your own. In this case,
-// compiled code from the standard library is added to your program.
-// It is loaded into RAM with the code you write when it runs. And
-// that thing we give a const name? That's a struct!
+// @import() adds the imported code to your own. In this case, code
+// from the standard library is added to your program and compiled
+// with it. All of this will be loaded into RAM when it runs. Oh, and
+// that thing we name "const std"? That's a struct!
const std = @import("std");