aboutsummaryrefslogtreecommitdiffstats
path: root/source/lang
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@leaflabs.com>2011-05-17 14:33:05 -0400
committerMarti Bolivar <mbolivar@leaflabs.com>2011-05-17 14:33:05 -0400
commit780ed306ef5fbb6a1defe71f1075885216933953 (patch)
tree62ef0ea8d0ce72777f527184551f6b84b24199d8 /source/lang
parent21b3d84b244d0852e79eef2da06cfaa989cc25e8 (diff)
downloadlibrambutan-780ed306ef5fbb6a1defe71f1075885216933953.tar.gz
librambutan-780ed306ef5fbb6a1defe71f1075885216933953.zip
Docs: removing reference to String class.
Diffstat (limited to 'source/lang')
-rw-r--r--source/lang/cpp/string.rst11
1 files changed, 2 insertions, 9 deletions
diff --git a/source/lang/cpp/string.rst b/source/lang/cpp/string.rst
index 84917c1..3497484 100644
--- a/source/lang/cpp/string.rst
+++ b/source/lang/cpp/string.rst
@@ -5,15 +5,8 @@
Strings
=======
-Text strings can be represented in two ways. You can
-
-1. Use the :ref:`String <lang-stringclass>` data type, which is
-part of the core as of version 0.0.9, or
-
-2. You can make a string out of an array of type :ref:`char
-<lang-char>` and null-terminate it.
-
-This page describes the second method.
+Text strings on the Maple can be represented with null-terminated
+arrays of type :ref:`char <lang-char>`.
Examples
--------