]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/strutl.cc
improve documentation for StringSplit()
[apt.git] / apt-pkg / contrib / strutl.cc
index fd768f18328371b98138bbcb44ff777fdc195478..96c6d2f3537e944841f5f72b6365ba5aaa26c377 100644 (file)
@@ -1120,11 +1120,9 @@ vector<string> VectorizeString(string const &haystack, char const &split)
                                                                        /*}}}*/
 // StringSplit - split a string into a string vector by token          /*{{{*/
 // ---------------------------------------------------------------------
-/* This can be used to split a given string up from a given string token
- * into a vector of strings. A optional "maxsplit" argument can be used
- * to limit the splitting, in this case the 
+/* See header for details.
  */
-vector<string> StringSplit(string const &s, std::string const &sep,
+vector<string> StringSplit(std::string const &s, std::string const &sep,
                            unsigned int maxsplit)
 {
    vector<string> split;