We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46612cb commit b717011Copy full SHA for b717011
content/core/connectivity.md
@@ -23,7 +23,7 @@ const connectionType: number = Connectivity.getConnectionType()
23
if (connectionType) {
24
// `Connectivity.connectionType.none`` is `0` so truthiness can be used to determine if the device is connected to any type of network
25
fetch('https://httpbin.org/get')
26
- .then((response) => reponse.text())
+ .then((response) => response.text())
27
.then((result) => console.log(`Fetched ${result} with ${connectionType}`))
28
} else {
29
console.log('Not connected to a network.')
0 commit comments