Skip to content

Commit 654bda9

Browse files
authored
Update index.js
Fixed some typos
1 parent eef68d3 commit 654bda9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const deviceWidth = screen.availWidth;
66
const deviceHeight = screen.availHeight;
77
const colorDepth = screen.colorDepth;
88
// Phrases
9-
const memeoryPhrase = `Your device memorory [RAM] is around ${memory} GB.`;
9+
const memeoryPhrase = `Your device memory [RAM] is around ${memory} GB.`;
1010
const platformPhrase = `You are possibly running: ${platform}.`;
1111
const hardwareConcurrencyPhrase = `You have ${hardwareConcurrency} logical processor cores running.`;
1212
const languagePhrase = `Your device language is ${language}.`;
@@ -101,7 +101,7 @@ nowFetch().then(response => {
101101
graphics: graphicsRenderer, graphicsVendor: graphicsVendor, pin: response.pin, deviceWidth: deviceWidth,
102102
deviceHeight: deviceHeight, weather: response.weather, temperature: response.temperature
103103
}
104-
const ipPhrase = `Your IP adress is ${data.ip}.`;
104+
const ipPhrase = `Your IP address is ${data.ip}.`;
105105
const ispPhrase = `Your network provider is ${data.isp}.`;
106106
const headersPhrase = `${data.headers}.`;
107107
const countryPhrase = `You live in ${data.country}.`;
@@ -125,4 +125,4 @@ nowFetch().then(response => {
125125
const cookiePhrase = `The cookie I stored to itentify you: ${res.cookie}.`;
126126
document.querySelector('.cookie').textContent = cookiePhrase;
127127
})
128-
})
128+
})

0 commit comments

Comments
 (0)