Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 6a50362

Browse files
committed
Fix more typos
1 parent 17abf72 commit 6a50362

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

example/NotifService.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default class NotifService {
3131
channelDescription: "A default channel", // (optional) default: undefined.
3232
soundName: "default", // (optional) See `soundName` parameter of `localNotification` function
3333
importance: Importance.HIGH, // (optional) default: Importance.HIGH. Int value of the Android notification importance
34-
vibrate: true, // (optional) default: true. Creates the default vibration patten if true.
34+
vibrate: true, // (optional) default: true. Creates the default vibration pattern if true.
3535
},
3636
(created) => console.log(`createChannel 'default-channel-id' returned '${created}'`) // (optional) callback returns whether the channel was created, false means it already existed.
3737
);
@@ -42,7 +42,7 @@ export default class NotifService {
4242
channelDescription: "A sound channel", // (optional) default: undefined.
4343
soundName: "sample.mp3", // (optional) See `soundName` parameter of `localNotification` function
4444
importance: Importance.HIGH, // (optional) default: Importance.HIGH. Int value of the Android notification importance
45-
vibrate: true, // (optional) default: true. Creates the default vibration patten if true.
45+
vibrate: true, // (optional) default: true. Creates the default vibration pattern if true.
4646
},
4747
(created) => console.log(`createChannel 'sound-channel-id' returned '${created}'`) // (optional) callback returns whether the channel was created, false means it already existed.
4848
);
@@ -57,7 +57,7 @@ export default class NotifService {
5757
channelDescription: `A custom channel to categorise your custom notifications. Updated at: ${Date.now()}`, // (optional) default: undefined.
5858
soundName: "default", // (optional) See `soundName` parameter of `localNotification` function
5959
importance: Importance.HIGH, // (optional) default: Importance.HIGH. Int value of the Android notification importance
60-
vibrate: true, // (optional) default: true. Creates the default vibration patten if true.
60+
vibrate: true, // (optional) default: true. Creates the default vibration pattern if true.
6161
},
6262
(created) => console.log(`createChannel returned '${created}'`) // (optional) callback returns whether the channel was created, false means it already existed.
6363
);

submitting-a-pull-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Pull Requests
22

3-
If you are thinking of, or have prepared a pull request, **thank you!** You efforts are greatly apprecaited by everyone associated with this project.
3+
If you are thinking of, or have prepared a pull request, **thank you!** Your efforts are greatly appreciated by everyone associated with this project.
44

55
In order to get your PR accepted please ensure the following:
66

trouble-shooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Known bugs and issues:
1111

1212

1313
```javascript
14-
// It doesn't works with the javascript engine used by React Native
14+
// It doesn't work with the javascript engine used by React Native
1515
const date = new Date("10-10-2020 12:30");
1616
```
1717
A good practice to get valid date could be:

0 commit comments

Comments
 (0)