diff --git a/client/crashpad_client.h b/client/crashpad_client.h index 10ad4047..eea953d4 100644 --- a/client/crashpad_client.h +++ b/client/crashpad_client.h @@ -506,11 +506,11 @@ class CrashpadClient { //! on another thread. This method does not block. //! //! A handler must have already been installed before calling this method. - static void StartProcesingPendingReports(); + static void StartProcessingPendingReports(); //! \brief Requests that the handler capture an intermediate dump even though //! there hasn't been a crash. The intermediate dump will be converted - //! to a mindump immediately. If StartProcesingPendingReports() has been + //! to a mindump immediately. If StartProcessingPendingReports() has been //! called, this will also trigger an upload. //! //! For internal use only. Clients should use CRASHPAD_SIMULATE_CRASH(). diff --git a/client/crashpad_client_ios.cc b/client/crashpad_client_ios.cc index 5c1f1ee4..a8ef224f 100644 --- a/client/crashpad_client_ios.cc +++ b/client/crashpad_client_ios.cc @@ -233,7 +233,7 @@ void CrashpadClient::ProcessIntermediateDump( } // static -void CrashpadClient::StartProcesingPendingReports() { +void CrashpadClient::StartProcessingPendingReports() { // TODO(justincohen): Start the CrashReportUploadThread. } diff --git a/doc/ios_overview_design.md b/doc/ios_overview_design.md index 943d7a5d..1c4d6dd0 100644 --- a/doc/ios_overview_design.md +++ b/doc/ios_overview_design.md @@ -96,7 +96,7 @@ the next call to `ProcessIntermediateDumps`. Conversely, stability concerns. In this case, intermediate dumps are automatically converted to minidumps and immediately eligible for uploading. -### `StartProcesingPendingReports` +### `StartProcessingPendingReports` For similar reasons, applications may choose the correct time to begin uploading pending reports, such as when ideal network conditions exist. By default, clients start with uploading disabled. Applications should call this API when