Fix some spacing and typos in ios documentation.

Change-Id: I909fe221df81f4a657f326aaf277f796db6fa97e
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2785784
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Justin Cohen <justincohen@chromium.org>
GitOrigin-RevId: d4c3de1afa52c3f9aa19c603929d6f896788fd2a
diff --git a/doc/ios_overview_design.md b/doc/ios_overview_design.md
index be23d09..943d7a5 100644
--- a/doc/ios_overview_design.md
+++ b/doc/ios_overview_design.md
@@ -47,7 +47,7 @@
 limitations of the minidump format, it is not possible to write a minidump
 immediately from the crash handler. Instead, an intermediate dump is written
 when a handler would normally write a minidump (such as during an exception or a
-forced dump without crashing).  The intermediate dump file will be converted to
+forced dump without crashing). The intermediate dump file will be converted to
 a minidump on the next run (or when the application decides it's safe to do so).
 
 During Crashpad initialization, the handler gathers basic system information
@@ -76,7 +76,7 @@
 automatically handle exceptions and capture the crashed process state in an
 intermediate dump file. Converting that intermediate dump file into a minidump
 is likely not safe to do from within a crashed process, and uploading a minidump
-is definitely unsafe to do at crash time.  Applications are expected to process
+is definitely unsafe to do at crash time. Applications are expected to process
 intermediate dumps into pending minidumps and begin processing pending
 minidumps, possibly for upload, at suitable times following the next application
 restart.
@@ -90,15 +90,15 @@
 similar to how other platforms write a minidump on exception handling. If
 uploading is enabled, this minidump will also be immediately uploaded. New
 intermediate dumps generated by exceptions or by
-`CRASHPAD_SIMULATE_CRASH_AND_DEFER_PROCESSING` will will not be processed until
+`CRASHPAD_SIMULATE_CRASH_AND_DEFER_PROCESSING` will not be processed until
 the next call to `ProcessIntermediateDumps`. Conversely,
 `CRASHPAD_SIMULATE_CRASH` can be called when the client has no performance or
-stability concerns.  In this case, intermediate dumps are automatically
-converted to minidumps and immediately eligable for uploading.
+stability concerns. In this case, intermediate dumps are automatically
+converted to minidumps and immediately eligible for uploading.
 
 ### `StartProcesingPendingReports`
 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
+pending reports, such as when ideal network conditions exist. By default,
+clients start with uploading disabled. Applications should call this API when
 it is determined that it is appropriate to do so (such as on a few seconds after
 startup, or when network connectivity is appropriate).