Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Unified Diff: third_party/crashpad/crashpad/util/string/split_string.h

Issue 2555353002: Update Crashpad to 32981a3ee9d7c2769fb27afa038fe2e194cfa329 (Closed)
Patch Set: fix readme Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/util/string/split_string.h
diff --git a/third_party/crashpad/crashpad/util/string/split_string.h b/third_party/crashpad/crashpad/util/string/split_string.h
index 4ea89d245939f7035f10002da61b5a83adf4a623..af4f953c7ab4882da27bb49cccc8a98aca181dbb 100644
--- a/third_party/crashpad/crashpad/util/string/split_string.h
+++ b/third_party/crashpad/crashpad/util/string/split_string.h
@@ -30,7 +30,7 @@ namespace crashpad {
//! character.
//!
//! \return `true` if \a string was split successfully. `false` if \a string
-//! did not contain a \delimiter character or began with a \delimiter
+//! did not contain a \a delimiter character or began with a \a delimiter
//! character.
bool SplitStringFirst(const std::string& string,
char delimiter,
@@ -41,8 +41,9 @@ bool SplitStringFirst(const std::string& string,
//!
//! \param[in] string The string to split.
//! \param[in] delimiter The delimiter to split at.
+//!
//! \return The individual parts of the string.
-std::vector<std::string> SplitString(const std::string& str, char delimiter);
+std::vector<std::string> SplitString(const std::string& string, char delimiter);
} // namespace crashpad

Powered by Google App Engine
This is Rietveld 408576698