-
Notifications
You must be signed in to change notification settings - Fork 763
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
Fixes typos #1557
Fixes typos #1557
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
An awesome contribution that would take our documentation to the next level 🤩! Just some minor changes that need to be applied.
Hi! Are you able to only make the changes to the docs and not the assets folder? It seems like this PR was ran through an auto spellcheck program and made changes to the .js files which are not necessary. We also do not require webrick (and GitHub does not allow this for hosting). |
@@ -72,6 +71,7 @@ require ( | |||
golang.org/x/text v0.6.0 // indirect | |||
gopkg.in/inf.v0 v0.9.1 // indirect | |||
gopkg.in/ini.v1 v1.67.0 // indirect | |||
gopkg.in/yaml.v2 v2.4.0 // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a docs PR and shouldn't be touching go.mod
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also we recommend you to execute go mod tidy before sending a pull request.
I ran go mod tidy
from your contributing guidelines section. But, yes I can undo this.
docs/js/background.js
Outdated
var bgArray = ['1.jpg', '2.jpg', '3.jpg', '4.jpg', '5.jpg']; | ||
var path = '../img/background/'; | ||
|
||
var bgArray = ["1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please undo changes to these files in the js/* folder
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you @rachfop.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please rebase against master / delete the docs/js/icons.js
and docs/js/background.js
files which are included in this PR
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: rachfop The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Co-authored-by: AhmedGrati <48932084+AhmedGrati@users.noreply.github.com>
Thanks for updating! CI is broken at the moment so I'm going to just merge this in as-is. |
Doc fixes
Doc build site
For the docs site to build:
bundle install
bundle update --bundler
bundle add webrick
bundle exec jekyll serve .
Dob build errors
For the error:
Calling DidYouMean::SPELL_CHECKERS.merge!(error_name => spell_checker)' has been deprecated.
I used
bundle update --bundler
to fix it.For the error:require: cannot load such file -- webrick (LoadError)
I usedbundle add webrick
to fix it.