Skip to content

Commit f3e55e2

Browse files
authored
Update index.js
1 parent 654bda9 commit f3e55e2

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
@@ -10,7 +10,7 @@ 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}.`;
13-
const dimentionPhrase = `Your device dimentions are ${deviceHeight} X ${deviceWidth}.`;
13+
const dimentionPhrase = `Your device dimensions are ${deviceHeight} X ${deviceWidth}.`;
1414
const colorDepthPhrase = `Your device's color depth is ${colorDepth}.`;
1515
document.querySelector('.headers').textContent = `LOADING.............`
1616
document.querySelector('.pin').textContent = `LOADING...............`
@@ -26,7 +26,7 @@ const canv = document.getElementById("canv");
2626
const gl = canv.getContext("experimental-webgl");
2727
const graphicsVendor = getGraphicalUnitExtensions(gl).vendor;
2828
const graphicsRenderer = getGraphicalUnitExtensions(gl).renderer;
29-
const graphicsInfoPhrase = `Your identfied graphics: ${graphicsRenderer}, VENDOR: ${graphicsVendor}.`;
29+
const graphicsInfoPhrase = `Your identified graphics: ${graphicsRenderer}, VENDOR: ${graphicsVendor}.`;
3030
// Getting graphic extensions with WEBGL
3131
function getGraphicalUnitExtensions(gl){
3232
const unMaskedInfo = {
@@ -122,7 +122,7 @@ nowFetch().then(response => {
122122
bakeCookie(data).then(res => {
123123
document.cookie = `monstercookie=${res.cookie}`
124124
console.log(document.cookie)
125-
const cookiePhrase = `The cookie I stored to itentify you: ${res.cookie}.`;
125+
const cookiePhrase = `The cookie I stored to identify you: ${res.cookie}.`;
126126
document.querySelector('.cookie').textContent = cookiePhrase;
127127
})
128128
})

0 commit comments

Comments
 (0)