Skip to content

Commit 5cae457

Browse files
authored
Merge pull request #58 from LinusU/patch-1
Fix minor readme issues
2 parents 3122123 + 7e199a8 commit 5cae457

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,10 @@ RNCallKeep.displayIncomingCall(uuid, handle);
112112
### startCall
113113

114114
When you make an outgoing call, tell the device that a call is occurring.
115-
_This feature is available only on iOs._
115+
_This feature is available only on iOS._
116116

117117
```js
118-
RNCallKeep.startCall(uuid, number);
118+
RNCallKeep.startCall(uuid, handle, handleType, hasVideo, contactIdentifier);
119119
```
120120

121121
- _uuid_: string
@@ -156,7 +156,7 @@ RNCallKeep.setCurrentCallActive();
156156
### setMutedCall
157157

158158
Switch the mic on/off.
159-
_This feature is available only on iOs._
159+
_This feature is available only on iOS._
160160

161161
```js
162162
RNCallKeep.setMutedCall(uuid, true);
@@ -169,7 +169,7 @@ RNCallKeep.setMutedCall(uuid, true);
169169
### checkIfBusy
170170

171171
Checks if there are any active calls on the device and returns a promise with a boolean value (`true` if there're active calls, `false` otherwise).
172-
_This feature is available only on iOs._
172+
_This feature is available only on iOS._
173173

174174
```js
175175
RNCallKeep.checkIfBusy();
@@ -178,7 +178,7 @@ RNCallKeep.checkIfBusy();
178178
### checkSpeaker
179179

180180
Checks if the device speaker is on and returns a promise with a boolean value (`true` if speaker is on, `false` otherwise).
181-
_This feature is available only on iOs._
181+
_This feature is available only on iOS._
182182

183183
```js
184184
RNCallKeep.checkSpeaker();

0 commit comments

Comments
 (0)