Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix simple typo, begining -> beginning #203

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/js/shCore.js
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,7 @@ function fixInputString(str)
};

/**
* Removes all white space at the begining and end of a string.
* Removes all white space at the beginning and end of a string.
*
* @param {String} str String to trim.
* @return {String} Returns string without leading and following white space characters.
Expand Down Expand Up @@ -966,7 +966,7 @@ function unindent(str)
min = Math.min(matches[0].length, min);
}

// trim minimum common number of white space from the begining of every line
// trim minimum common number of white space from the beginning of every line
if (min > 0)
for (var i = 0; i < lines.length; i++)
lines[i] = lines[i].substr(min);
Expand Down