]> git.lyx.org Git - features.git/commitdiff
Improve documentation.
authorRichard Heck <rgheck@comcast.net>
Sat, 1 Mar 2008 16:27:56 +0000 (16:27 +0000)
committerRichard Heck <rgheck@comcast.net>
Sat, 1 Mar 2008 16:27:56 +0000 (16:27 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23371 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/lstrings.h

index 381e818f763336286fa3d1836ad3980a90b9d0e7..351918474349e669046735ac2f683edf3d7a3403 100644 (file)
@@ -92,12 +92,12 @@ docstring const lowercase(docstring const & s);
 /// Does not depend on the locale.
 docstring const uppercase(docstring const & s);
 
-/// Does the string start with this prefix?
-bool prefixIs(docstring const &, char_type);
+/// Does str start with c?
+bool prefixIs(docstring const & str, char_type c);
 
-/// Does the std::string start with this prefix?
-bool prefixIs(std::string const &, std::string const &);
-bool prefixIs(docstring const &, docstring const &);
+/// Does str start with pre?
+bool prefixIs(std::string const & str, std::string const & pre);
+bool prefixIs(docstring const & str, docstring const & pre);
 
 /// Does the string end with this char?
 bool suffixIs(std::string const &, char);