From 03c7ff1752a381ea8b4ac3ecfa6c9f69401548db Mon Sep 17 00:00:00 2001 From: lily Date: Fri, 17 May 2019 09:25:53 -0500 Subject: [PATCH] :clown_face: somehow forgot to escape the single quote --- src/scripts/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/script.js b/src/scripts/script.js index 774c478..bf573c9 100644 --- a/src/scripts/script.js +++ b/src/scripts/script.js @@ -1,6 +1,6 @@ console.log('%c yo! ', 'background: lemonchiffon; border: 1px solid #fff'); console.log('%c welcome to the console <3 ', 'background: lemonchiffon; border: 1px solid #fff'); -console.log('%c if you wanna see the source code or whatever, you're better off checking the git repo. ', 'background: lemonchiffon; border: 1px solid #fff'); +console.log('%c if you wanna see the source code or whatever, you\'re better off checking the git repo. ', 'background: lemonchiffon; border: 1px solid #fff'); console.log('%c the link is at the bottom of the page. love you! ', 'background: lemonchiffon; border: 1px solid #fff'); var $ = require("jquery");