From e32aefa76ce01a3897719599f7ff7f3a1922cc04 Mon Sep 17 00:00:00 2001 From: ironyman Date: Thu, 13 Jun 2019 22:26:49 -0700 Subject: [PATCH] Fix typo --- src/custom_types/enum.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom_types/enum.md b/src/custom_types/enum.md index 51683fb8e3..5eae819adc 100644 --- a/src/custom_types/enum.md +++ b/src/custom_types/enum.md @@ -16,7 +16,7 @@ enum WebEvent { // like tuple structs, KeyPress(char), Paste(String), - // or like structures. + // or c-like structures. Click { x: i64, y: i64 }, }