From 978f5a51a955425aaa80a98ea36350347b0d823f Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Tue, 10 Mar 2020 15:39:16 +0100 Subject: [PATCH] Fix typo in 13.rs --- presentation/chapters/shared/code/syntax/13.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/presentation/chapters/shared/code/syntax/13.rs b/presentation/chapters/shared/code/syntax/13.rs index 96b395e..df302ab 100644 --- a/presentation/chapters/shared/code/syntax/13.rs +++ b/presentation/chapters/shared/code/syntax/13.rs @@ -9,7 +9,7 @@ where Stringish: AsRef { thing } -// Enums too! +// Structs too! struct GenericStruct { value: A, } @@ -18,4 +18,4 @@ fn main() { let foo = "foo"; generic_inline(foo); generic_where(foo); -} \ No newline at end of file +}