From eab819921ad150879c721e549a016380f1bdf2c6 Mon Sep 17 00:00:00 2001
From: Rod Elias <rodiney@gmail.com>
Date: Sat, 20 Mar 2021 16:52:02 -0300
Subject: [PATCH] capitalize `c` letter

By capitalizing the `c` letter it makes clear that we're talking about the C programming language.
---
 exercises/structs/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/exercises/structs/README.md b/exercises/structs/README.md
index d2d7dc2..72e0061 100644
--- a/exercises/structs/README.md
+++ b/exercises/structs/README.md
@@ -1,6 +1,6 @@
 ### Structs
 
-Rust has three struct types: a classic c struct, a tuple struct, and a unit struct.
+Rust has three struct types: a classic C struct, a tuple struct, and a unit struct.
 
 #### Book Sections