@@ -10,7 +10,7 @@ const memeoryPhrase = `Your device memory [RAM] is around ${memory} GB.`;
1010const platformPhrase = `You are possibly running: ${ platform } .` ;
1111const hardwareConcurrencyPhrase = `You have ${ hardwareConcurrency } logical processor cores running.` ;
1212const 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 } .` ;
1414const colorDepthPhrase = `Your device's color depth is ${ colorDepth } .` ;
1515document . querySelector ( '.headers' ) . textContent = `LOADING.............`
1616document . querySelector ( '.pin' ) . textContent = `LOADING...............`
@@ -26,7 +26,7 @@ const canv = document.getElementById("canv");
2626const gl = canv . getContext ( "experimental-webgl" ) ;
2727const graphicsVendor = getGraphicalUnitExtensions ( gl ) . vendor ;
2828const 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
3131function 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