From 622075d617f65fe077bb6bbce478f368010944d5 Mon Sep 17 00:00:00 2001 From: Phosphorus Moscu Date: Mon, 24 Jun 2024 05:14:28 -0300 Subject: [PATCH] fix typo remove `ds` and change a misspelling, the correct identifier is `hc` --- text/0000-return-type-notation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0000-return-type-notation.md b/text/0000-return-type-notation.md index 694f3dab522..ffd7b4bc5fb 100644 --- a/text/0000-return-type-notation.md +++ b/text/0000-return-type-notation.md @@ -789,7 +789,7 @@ where typeof { let hc: &'a mut H; let s: Server; - H::check(h, ds) + H::check(hc, s) }: Send, ```