From 038e096e59fe50e2cb2b1a7d235f15fafb58db33 Mon Sep 17 00:00:00 2001 From: bpese <39450405+bpese@users.noreply.github.com> Date: Sat, 13 Apr 2019 22:55:45 -0600 Subject: [PATCH] Fixed a few typos. (#31577) --- guide/english/c/structures/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/c/structures/index.md b/guide/english/c/structures/index.md index d1aa49ca63..bf731ec10a 100644 --- a/guide/english/c/structures/index.md +++ b/guide/english/c/structures/index.md @@ -4,7 +4,7 @@ title: Structures ## Structures in C ### What are Structures? -* A **structure** is a user-defined type in C. It is based on the idea that certain times, programmer wants to manage not just primitive data-types but also programmer-defined data-types. +* A **structure** is a user-defined type in C. It is based on the idea that at certain times, a programmer wants to manage not just primitive data-types, but also programmer-defined data-types. * **Structure**, as the name suggests, consists of various primitive data-types, like character, integers, floating point variables, arrays, etc. * **Structure** can also contain various other user-defined data types. You would learn about nested-structures next. * **Structures** form the basis of **_object-oriented-programming_** as the concept of *class* originates from structures.