From 07057e450c82f162ab0100727b49e8fd4c26b3d9 Mon Sep 17 00:00:00 2001 From: michael starke Date: Mon, 18 Aug 2014 00:34:16 +0200 Subject: [PATCH] Fixed documentation errors --- MacPass/MPDocument.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/MacPass/MPDocument.h b/MacPass/MPDocument.h index be0f2d3b..cee549a7 100644 --- a/MacPass/MPDocument.h +++ b/MacPass/MPDocument.h @@ -24,12 +24,15 @@ #import "KPKVersion.h" /** - * Postes when a new group was added by the document. This is only fired when the user caused this by adding. Undo/Redo does NOT post this - * The userInfo dictionary conatins one the added group at MPDocumentGroupKey + * Posted when a new group was added to the document. + * This is only posted when the user caused this by adding. + * Undo/Redo will not cause this notification to be reposted + * The userInfo dictionary contains the added group at MPDocumentGroupKey */ APPKIT_EXTERN NSString *const MPDocumentDidAddGroupNotification; /** - * Posted when the used has added a new entry. Not posted on undo/redo. + * Posted when the user has added a new entry to the document. + * Undo/redo will not cause this notification to be reposted. * The userInfo dictionary contains the added entry at MPDocumentEntryKey */ APPKIT_EXTERN NSString *const MPDocumentDidAddEntryNotification;