Skip to content

Commit b717011

Browse files
authored
fix: typo reponse -> response (#135)
1 parent 46612cb commit b717011

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/core/connectivity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const connectionType: number = Connectivity.getConnectionType()
2323
if (connectionType) {
2424
// `Connectivity.connectionType.none`` is `0` so truthiness can be used to determine if the device is connected to any type of network
2525
fetch('https://httpbin.org/get')
26-
.then((response) => reponse.text())
26+
.then((response) => response.text())
2727
.then((result) => console.log(`Fetched ${result} with ${connectionType}`))
2828
} else {
2929
console.log('Not connected to a network.')

0 commit comments

Comments
 (0)