From 7640919aa42a308e78bd4c1e16ba4feb6a73c9e7 Mon Sep 17 00:00:00 2001 From: Christopher Sellers Date: Fri, 29 Apr 2022 09:52:58 +1000 Subject: [PATCH] Remove duplicate 'this' --- src/4_generators_async_await.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/4_generators_async_await.md b/src/4_generators_async_await.md index 56efc7c..0c9c69b 100644 --- a/src/4_generators_async_await.md +++ b/src/4_generators_async_await.md @@ -541,7 +541,7 @@ pub fn main() { Wait? What happened to "Hello"? And why did our code segfault? Turns out that while the example above compiles just fine, we expose consumers -of this this API to both possible undefined behavior and other memory errors +of this API to both possible undefined behavior and other memory errors while using just safe Rust. This is a big problem! > I've actually forced the code above to use the nightly version of the compiler.