From 68f451478ff78aa22ff0f83a729a5269d3879a18 Mon Sep 17 00:00:00 2001 From: Jed Mijares <36108020+jedmijares@users.noreply.github.com> Date: Tue, 18 Jun 2019 15:00:30 -0400 Subject: [PATCH] Fixes typo in string.adoc "in actually" should be "in actuality" or "actually". --- Language/Variables/Data Types/string.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Variables/Data Types/string.adoc b/Language/Variables/Data Types/string.adoc index df629b4f6..9273f9c9e 100644 --- a/Language/Variables/Data Types/string.adoc +++ b/Language/Variables/Data Types/string.adoc @@ -60,7 +60,7 @@ char myString[] = "This is the first line" *Arrays of strings* -It is often convenient, when working with large amounts of text, such as a project with an LCD display, to setup an array of strings. Because strings themselves are arrays, this is in actually an example of a two-dimensional array. +It is often convenient, when working with large amounts of text, such as a project with an LCD display, to setup an array of strings. Because strings themselves are arrays, this is actually an example of a two-dimensional array. In the code below, the asterisk after the datatype `char` "`char*`" indicates that this is an array of "`pointers`". All array names are actually pointers, so this is required to make an array of arrays. Pointers are one of the more esoteric parts of C++ for beginners to understand, but it isn't necessary to understand pointers in detail to use them effectively here.