summaryrefslogtreecommitdiff
path: root/ACE/ace/String_Base.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-27 14:52:00 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-27 14:52:00 +0000
commit86b8c0bd483f132fdfc33c7e91d8d175676b0177 (patch)
treed23401770c31f8ce6eb0e3fc4e35eb880bd19827 /ACE/ace/String_Base.h
parent89ee37f9dbc15d8e0cf2ca9d6da85d0aca06c5c4 (diff)
downloadATCD-86b8c0bd483f132fdfc33c7e91d8d175676b0177.tar.gz
Mon Sep 27 14:47:47 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/String_Base.h: Doxygen changes * ace/Svc_Conf_Lexer.cpp: Const changes * bin/msvc_static_order.lst: Some updates, but this list is very outdated
Diffstat (limited to 'ACE/ace/String_Base.h')
-rw-r--r--ACE/ace/String_Base.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/String_Base.h b/ACE/ace/String_Base.h
index 3ba0dbba6b8..4baf8e4213f 100644
--- a/ACE/ace/String_Base.h
+++ b/ACE/ace/String_Base.h
@@ -400,7 +400,7 @@ public:
const ACE_CHAR_T *fast_rep (void) const;
/**
- * Same as STL String's <c_str> and <fast_rep>.
+ * Same as STL String's c_str() and fast_rep().
*/
const ACE_CHAR_T *c_str (void) const;
@@ -415,7 +415,7 @@ public:
size_type strstr (const ACE_String_Base<ACE_CHAR_T> &s) const;
/**
- * Find <str> starting at pos. Returns the slot of the first
+ * Find @a str starting at pos. Returns the slot of the first
* location that matches (will be >= pos), else @c npos.
*
* @param str Input ACE_String_Base string to search for in stored string.
@@ -426,7 +426,7 @@ public:
size_type find (const ACE_String_Base<ACE_CHAR_T> &str, size_type pos = 0) const;
/**
- * Find @a s starting at pos. Returns the slot of the first
+ * Find @a s starting at @a pos. Returns the slot of the first
* location that matches (will be >= pos), else @c npos.
*
* @param s non-zero input string to search for in stored string.
@@ -437,7 +437,7 @@ public:
size_type find (const ACE_CHAR_T *s, size_type pos = 0) const;
/**
- * Find @a c starting at pos. Returns the slot of the first
+ * Find @a c starting at @a pos. Returns the slot of the first
* location that matches (will be >= pos), else @c npos.
*
* @param c Input character to search for in stored string.
@@ -448,7 +448,7 @@ public:
size_type find (ACE_CHAR_T c, size_type pos = 0) const;
/**
- * Find @a c starting at pos (counting from the end). Returns the
+ * Find @a c starting at @a pos (counting from the end). Returns the
* slot of the first location that matches, else @c npos.
*
* @param c Input character to search for in stored string.