Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed typo in notification property name #188

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fixed typo in notification property name
rm_invalidProductIdentififers should be rm_invalidProductIdentifiers
dancarls0n authored Jun 16, 2016
commit 31c9b6a27ee64d0546db638d343dba8e9658892f
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ RMStore sends notifications of StoreKit related events and extends `NSNotificati
- (void)storeProductsRequestFinished:(NSNotification*)notification
{
NSArray *products = notification.rm_products;
NSArray *invalidProductIdentifiers = notification.rm_invalidProductIdentififers;
NSArray *invalidProductIdentifiers = notification.rm_invalidProductIdentifiers;
}
```