diff --git a/Chapters/03-unittests.qmd b/Chapters/03-unittests.qmd index 56cfb05..72f8efd 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.