Charles Tritt / Mbed 2 deprecated ArrayPointers

Dependencies:   mbed

Fork of FunctionPointers by Charles Tritt

Files at this revision

API Documentation at this revision

Comitter:
CSTritt
Date:
Sun Nov 05 21:10:29 2017 +0000
Parent:
1:bdea7966ea78
Commit message:
Corrected a comment.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r bdea7966ea78 -r 7d14b75d8a68 main.cpp
--- a/main.cpp	Sun Nov 05 21:07:10 2017 +0000
+++ b/main.cpp	Sun Nov 05 21:10:29 2017 +0000
@@ -22,7 +22,7 @@
 
     // Here's another way to initialize a string. This is actually the 
     // approach recommended by Kieras at Michigan as it may avoid the creation 
-    // of a literal followed by copying to the array...
+    // and storage of a literal followed by copying to the array...
     char* pMyOtherString = "Here is more text.";
     printf("Other string: %s\n", pMyOtherString);