Skip to content

Commit

Permalink
Minor typographical fixes (#20)
Browse files Browse the repository at this point in the history
* fix typo.
indec -> index

* fix typo.
indec -> index
alongwith -> along with
  • Loading branch information
ashawe authored and jamesgeorge007 committed Aug 23, 2020
1 parent fad7c96 commit c114a6f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@ const toUrlFormat = (item) => {
/**
* Execute shell command
* @param {String} cmd - root command
* @param {String[]} args - args to be passed alongwith
* @param {String[]} args - args to be passed along with
*
* @returns {Promise<void>}
*/
Expand Down Expand Up @@ -1601,7 +1601,7 @@ Toolkit.run(

const readmeContent = fs.readFileSync("./README.md", "utf-8").split("\n");

// Find the indec corresponding to <!--START_SECTION:activity--> comment
// Find the index corresponding to <!--START_SECTION:activity--> comment
let startIdx = readmeContent.findIndex(
(content) => content.trim() === "<!--START_SECTION:activity-->"
);
Expand Down
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const toUrlFormat = (item) => {
/**
* Execute shell command
* @param {String} cmd - root command
* @param {String[]} args - args to be passed alongwith
* @param {String[]} args - args to be passed along with
*
* @returns {Promise<void>}
*/
Expand Down Expand Up @@ -126,7 +126,7 @@ Toolkit.run(

const readmeContent = fs.readFileSync("./README.md", "utf-8").split("\n");

// Find the indec corresponding to <!--START_SECTION:activity--> comment
// Find the index corresponding to <!--START_SECTION:activity--> comment
let startIdx = readmeContent.findIndex(
(content) => content.trim() === "<!--START_SECTION:activity-->"
);
Expand Down

0 comments on commit c114a6f

Please sign in to comment.