From 27ba69cd6d955ea823159e049019ca1b499ade9d Mon Sep 17 00:00:00 2001 From: Asher Date: Fri, 27 Oct 2023 09:15:57 +0100 Subject: [PATCH] Typo in appendix --- src/chp16_appendix/types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chp16_appendix/types.md b/src/chp16_appendix/types.md index b656897..3923be5 100644 --- a/src/chp16_appendix/types.md +++ b/src/chp16_appendix/types.md @@ -194,7 +194,7 @@ But we'll use it to wrap up this aside on types and reliability. > Go is a popular, modern, statically-typed, natively-compiled programming language. > It has fantastic concurrency support. > But garbage collection makes it unsuitable for a wide range of systems programming tasks. -> Go has to "pause" your entire program at unpredictable internals and execute an algorithm to clean up memory. +> Go has to "pause" your entire program at unpredictable intervals and execute an algorithm to clean up memory. > This is often unacceptable for real-time and low-latency systems. > > Rust helps you wrangle memory at compile time, inserting allocation/deallocation logic based on variable scope.