From 29fab5cbd3eef4c3591543c55ca4501432895fff Mon Sep 17 00:00:00 2001 From: Atharva Nanavate Date: Wed, 8 Nov 2023 19:22:45 +0530 Subject: [PATCH] Updated GfG URL and Repository Description. --- scripts/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/index.js b/scripts/index.js index 8a55794..e9f7134 100644 --- a/scripts/index.js +++ b/scripts/index.js @@ -51,7 +51,7 @@ const createRepositoryStatusCode = (responseText, statusCode, repositoryName) => default: chrome.storage.local.set({ current_phase: 'solve_and_push' }, () => { $('#error_info').hide(); - $('#success_acknowledgement').html(`Successfully created ${repositoryName}. Start solving on GeeksforGeeks now!`,); + $('#success_acknowledgement').html(`Successfully created ${repositoryName}. Start solving on GeeksforGeeks now!`,); $('#success_acknowledgement').show(); $('#unlinkRepository').show(); @@ -75,7 +75,7 @@ const createRepository = (accessToken, repositoryName) => { name, private: true, auto_init: true, - description: 'This repository contains my solutions to various GeeksforGeeks DSA problems. The solutions are organized by the level of difficulty - Created using [GfG To GitHub](https://github.com/AtharvaNanavate/GfG-To-GitHub)', + description: 'This repository serves as a collection of my solutions to various GeeksforGeeks Data Structures and Algorithms (DSA) problems, organized by the level of difficulty. - Created using [GfG To GitHub](https://github.com/AtharvaNanavate/GfG-To-GitHub)', }; repositoryInit = JSON.stringify(repositoryInit); @@ -160,7 +160,7 @@ const linkRepo = (accessToken, repositoryName) => { {current_phase:'solve_and_push', repo: responseText.html_url}, () => { $('#error_info').hide(); - $('#success_acknowledgement').html(`Successfully linked ${repositoryName} to 'GfG To GitHub'. Start solving on GeeksforGeeks  now!`,); + $('#success_acknowledgement').html(`Successfully linked ${repositoryName} to 'GfG To GitHub'. Start solving on GeeksforGeeks  now!`,); $('#success_acknowledgement').show(); $('#unlinkRepository').show(); },