Browse Source

Updated README.md to fix typo and some punctuation

you --> your
Rohan Talip 5 years ago
parent
commit
dfef5985bb
No account linked to committer's email address
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      README.md

+ 4
- 4
README.md View File

183
 ### iOS Notes
183
 ### iOS Notes
184
 
184
 
185
 * Permission type `bluetooth` represents the status of the
185
 * Permission type `bluetooth` represents the status of the
186
-  `CBPeripheralManager`. Don't use this if only need `CBCentralManager`
186
+  `CBPeripheralManager`. Don't use this if only need `CBCentralManager`.
187
 * Permission type `location` accepts a second parameter for `request()` and
187
 * Permission type `location` accepts a second parameter for `request()` and
188
   `check()`; the second parameter is a string, either `always` or `whenInUse`
188
   `check()`; the second parameter is a string, either `always` or `whenInUse`
189
   (default).
189
   (default).
190
 * Permission type `notification` accepts a second parameter for `request()`. The
190
 * Permission type `notification` accepts a second parameter for `request()`. The
191
   second parameter is an array with the desired alert types. Any combination of
191
   second parameter is an array with the desired alert types. Any combination of
192
   `alert`, `badge` and `sound` (default requests all three).
192
   `alert`, `badge` and `sound` (default requests all three).
193
-* If you are not requesting mediaLibrary then you can remove MediaPlayer.framework from the xcode project
193
+* If you are not requesting mediaLibrary then you can remove MediaPlayer.framework from the xcode project.
194
 
194
 
195
 ```js
195
 ```js
196
 // example
196
 // example
221
 
221
 
222
 #### App Store submission disclaimer
222
 #### App Store submission disclaimer
223
 
223
 
224
-If you need to submit you application to the AppStore, you need to add to your
224
+If you need to submit your application to the AppStore, you need to add to your
225
 `Info.plist` all `*UsageDescription` keys with a string value explaining to the
225
 `Info.plist` all `*UsageDescription` keys with a string value explaining to the
226
 user how the app uses this data. **Even if you don't use them**.
226
 user how the app uses this data. **Even if you don't use them**.
227
 
227
 
313
 #### Q: iOS - App crashes when I change permission from settings
313
 #### Q: iOS - App crashes when I change permission from settings
314
 
314
 
315
 > A: This is normal. iOS restarts your app when your privacy settings change.
315
 > A: This is normal. iOS restarts your app when your privacy settings change.
316
-> Just google "iOS crash permission change"
316
+> Just google "iOS crash permission change".