From aee7c2ea6476d0fad799125cb4e880b3a521b156 Mon Sep 17 00:00:00 2001 From: FraFrieFa Date: Sun, 28 Sep 2025 03:45:26 +0200 Subject: [PATCH] Fixed typo in async-05-traits-for-async.toml --- quizzes/async-05-traits-for-async.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quizzes/async-05-traits-for-async.toml b/quizzes/async-05-traits-for-async.toml index 516b270a4f..8fec511728 100644 --- a/quizzes/async-05-traits-for-async.toml +++ b/quizzes/async-05-traits-for-async.toml @@ -57,7 +57,7 @@ async fn example(x: i32) -> i32 { ``` """ context = """ -The core problem addressed by pinning in self-reference, or a future which contains a pointer to itself. +The core problem addressed by pinning is self-reference, or a future which contains a pointer to itself. This happens when an async block contains a local variable that refers to another local variable in the future. Here, that would be `y = &x`. """