Skip to content

Commit 3962214

Browse files
authored
Merge pull request #70 from vsoch/add/spell-check
adding spell check for docs
2 parents 42d2ea4 + 7874fbe commit 3962214

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: check-spelling
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request: []
7+
8+
jobs:
9+
formatting:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Check for typos
14+
uses: crate-ci/typos@592b36d23c62cb378f6097a292bc902ee73f93ef # version 1.0.4
15+
with:
16+
files: ./README.md ./_docs ./pages ./_posts

_docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ If you want to add an external url for a parent or child, do this:
153153
### News Posts
154154
155155
It might be the case that your site or group has news items that would
156-
warrent sharing with the community, and should be available as a feed.
156+
warrant sharing with the community, and should be available as a feed.
157157
For this reason, you can write traditional [posts](https://jekyllrb.com/docs/posts/) in the `_posts`
158158
folder that will parse into the site [feed]({{ site.baseurl }}/feed.xml)
159159
The bottom of the page links the user to a post archive, where posts are organized
@@ -321,7 +321,7 @@ should follow the instructions to [set up a project](https://circleci.com/docs/e
321321
and then in the project settings be sure to enable building forked build requests,
322322
and to cancel redundant builds. The preview will be built on CircleCI, and saved
323323
to static files for you to browse. The only change you will need is to edit
324-
the static files location to be the name of your respository, which is at te
324+
the static files location to be the name of your repository, which is at te
325325
bottom of the `.circleci/config.yml` file:
326326

327327
```yaml

pages/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permalink: /about/
77

88
This is a [starter template](https://vsoch.github.io/docsy-jekyll/) for a Docsy jekyll theme, based
99
on the Beautiful [Docsy](https://github.com/google/docsy) that renders with Hugo. This version is intended for
10-
native deployment on GitHub pages. See the [respository]({{ site.repo }}) for more details.
10+
native deployment on GitHub pages. See the [repository]({{ site.repo }}) for more details.
1111

1212
## Support
1313

0 commit comments

Comments
 (0)