From a18e77edba6d5c4e2f721a878795e4c63b5dd432 Mon Sep 17 00:00:00 2001 From: Lyall Jonathan Di Trapani Date: Mon, 17 Feb 2025 14:08:59 -0500 Subject: [PATCH] Chapter 03-unittests grammer corrections - Subject is you, so verb is are not is. - Also, it does, not it do. --- Chapters/03-unittests.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Chapters/03-unittests.qmd b/Chapters/03-unittests.qmd index 56cfb051..72f8efd6 100644 --- a/Chapters/03-unittests.qmd +++ b/Chapters/03-unittests.qmd @@ -109,8 +109,8 @@ that help us, programmers, to avoid (but also detect) memory problems, such as memory leaks and double-frees. The `defer` keyword is especially helpful in this regard. -When developing your source code, you, the programmer, is responsible for making -sure that your code do not produce such problems. However, +When developing your source code, you, the programmer, are responsible for making +sure that your code does not produce such problems. However, you can also use a special type of an allocator object in Zig that is capable of automatically detecting such problems for you. This is the `std.testing.allocator` object.