summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--base/debug/crash_logging.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/debug/crash_logging.h b/base/debug/crash_logging.h
index 7a6bbcd..97bac75 100644
--- a/base/debug/crash_logging.h
+++ b/base/debug/crash_logging.h
@@ -25,7 +25,7 @@ namespace debug {
class StackTrace;
-// Set or clear a specific key-value pair from the crash metadata. Keys and
+// Sets or clears a specific key-value pair from the crash metadata. Keys and
// values are terminated at the null byte.
BASE_EXPORT void SetCrashKeyValue(const base::StringPiece& key,
const base::StringPiece& value);
@@ -75,11 +75,11 @@ struct BASE_EXPORT CrashKey {
BASE_EXPORT size_t InitCrashKeys(const CrashKey* const keys, size_t count,
size_t chunk_max_length);
-// Returns the correspnding crash key object or NULL for a given key.
+// Returns the corresponding crash key object or NULL for a given key.
BASE_EXPORT const CrashKey* LookupCrashKey(const base::StringPiece& key);
// In the platform crash reporting implementation, these functions set and
-// clear the NUL-termianted key-value pairs.
+// clear the NUL-terminated key-value pairs.
typedef void (*SetCrashKeyValueFuncT)(const base::StringPiece&,
const base::StringPiece&);
typedef void (*ClearCrashKeyValueFuncT)(const base::StringPiece&);