Skip to content

docs: Fix simple typo, proccess -> process #19

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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 build/js/mprogress.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
var progress = this._getRenderedId(),
MParent = document.querySelector(this.options.parent);

// stop this proccess if the progress was allready removed
// stop this process if the progress was already removed
if (!MParent) return;

if (MParent != document.body) {
Expand Down Expand Up @@ -734,4 +734,4 @@

return Mprogress;
});
}).call(this);
}).call(this);
2 changes: 1 addition & 1 deletion src/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ import Utils from './utils';
var progress = this._getRenderedId(),
MParent = document.querySelector(this.options.parent);

// stop this proccess if the progress was allready removed
// stop this process if the progress was already removed
if (!MParent) return;

if (MParent != document.body) {
Expand Down