aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-12-09 12:00:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-12-09 12:00:24 +0200
commita13a2976c2211f06e359d7cfd96a78e80df2567e (patch)
tree5a69a31ee6cbce4ce8522c3712ad9b95724b1a55 /doc
parenta35131e29b9290550a2991027ec5ceb3bea014c4 (diff)
Cosmetic change (rename naked pointer to raw pointer)
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.xhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.xhtml b/doc/manual.xhtml
index aa58a86..84ccd0d 100644
--- a/doc/manual.xhtml
+++ b/doc/manual.xhtml
@@ -3501,7 +3501,7 @@ class person
};
</pre>
- <p>If you would like to use a naked pointer as an object pointer,
+ <p>If you would like to use the raw pointer as an object pointer,
you can use <code>*</code> as a shortcut:</p>
<pre class="c++">
@@ -3515,7 +3515,7 @@ class person
<p>If a pointer type is not explicitly specified, the default
pointer, specified with the <code>--default-pointer</code>
ODB compiler option, is used. If this option is not specified
- either, then the naked pointer is used by default.</p>
+ either, then the raw pointer is used by default.</p>
<p>For additional information on object pointers, refer to
<a href="#@@">Section @@, ""</a>.</p>