From 6824e0b927322ca63140f4b25d0f354ad044b29b Mon Sep 17 00:00:00 2001 From: pkivolowitz Date: Thu, 3 Nov 2022 10:33:06 -0500 Subject: [PATCH] typos --- more/strlen_for_c/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/more/strlen_for_c/README.md b/more/strlen_for_c/README.md index cb17981..9b71444 100644 --- a/more/strlen_for_c/README.md +++ b/more/strlen_for_c/README.md @@ -1,7 +1,7 @@ -# Determining the Length of Strings for C Functions +# Determining the Length of Literal Strings for C Functions -C string have no soul, is something I like to tell my students. For -example, uUnlike C++ strings, you can't ask them to tell you about +C strings have no soul, is something I like to tell my students. For +example, Unlike C++ strings, you can't ask them to tell you about themselves. Instead you must use other functions such as `strlen()`. When working with APIs that use C strings, you must often tell the