Fix a lot more typos and a property name typo

See https://github.com/bitstadium/HockeySDK-iOS/issues/139

Important for users, is that the public property `timeintervalCrashInLastSessionOccured` name is fixed. If you are using this, you need to adjust your code.
This commit is contained in:
Andreas Linde
2015-03-18 17:07:39 +01:00
parent e0f6b6b0be
commit 7eef1c4075
19 changed files with 114 additions and 114 deletions

View File

@@ -140,7 +140,7 @@ typedef NS_ENUM(NSUInteger, BITCrashManagerUserInput) {
very slow.
It is possible to check upon startup if the app crashed before using `didCrashInLastSession` and also how much
time passed between the app launch and the crash using `timeintervalCrashInLastSessionOccured`. This allows you
time passed between the app launch and the crash using `timeintervalCrashInLastSessionOccurred`. This allows you
to add additional code to your app delaying the app start until the crash has been successfully send if the crash
occurred within a critical startup timeframe, e.g. after 10 seconds. The `BITCrashManagerDelegate` protocol provides
various delegates to inform the app about it's current status so you can continue the remaining app startup setup
@@ -400,7 +400,7 @@ typedef NS_ENUM(NSUInteger, BITCrashManagerUserInput) {
@see didCrashInLastSession
@see BITCrashManagerDelegate
*/
@property (nonatomic, readonly) NSTimeInterval timeintervalCrashInLastSessionOccured;
@property (nonatomic, readonly) NSTimeInterval timeintervalCrashInLastSessionOccurred;
///-----------------------------------------------------------------------------