Skip to content

Commit

Permalink
Merge pull request #41 from szepeviktor/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
seothemes authored Nov 20, 2023
2 parents 80dbb5e + 1c4e115 commit fd7b8d2
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.gitattributes export-ignore
.github/ export-ignore
.gitignore export-ignore
.typos.toml export-ignore
.wordpress-org/ export-ignore
README.md export-ignore
phpcs.xml export-ignore
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow

name: "Spelling"

on:
pull_request: null
push:
branches:
- "develop"
- "main"

permissions:
contents: "read"

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

jobs:
typos_check:
name: "文A Typos check"
runs-on: "ubuntu-22.04"
timeout-minutes: 1
steps:
-
name: "Checkout repository"
uses: "actions/checkout@v3"
-
name: "Search for misspellings"
uses: "crate-ci/typos@master"
2 changes: 2 additions & 0 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[files]
extend-exclude = ["assets/"]
2 changes: 1 addition & 1 deletion assets/js/editor.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ License URL: https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
* Add: New settings UI
* Remove: Child theme json fix
* Fix: Placeholder border
* Fix: Surface before psuedo element pointer events
* Fix: Surface before pseudo element pointer events
* Fix: Marquee block gap custom properties

= 0.9.18 - 21 November 2022 =
Expand Down Expand Up @@ -530,7 +530,7 @@ License URL: https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
* Fix: Remove id from nav menu in patterns
* Fix: Sub menu padding
* Fix: Template part inline css
* Fix: Icon psuedo element bug in Gutenberg 14.3
* Fix: Icon pseudo element bug in Gutenberg 14.3
* Fix: Horizontal submenu padding on mobile

= 0.7.0 - 12 October 2022 =
Expand Down
4 changes: 2 additions & 2 deletions src/block-extensions/animation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ const Animation = ( { attributes, setAttributes }: blockProps ): JSX.Element =>
min={ 0 }
max={ 100 }
step={ 0.1 }
shifStep={ 10 }
shiftStep={ 10 }
allowReset={ true }
/>
</FlexItem>
Expand All @@ -338,7 +338,7 @@ const Animation = ( { attributes, setAttributes }: blockProps ): JSX.Element =>
min={ 0 }
max={ 100 }
step={ 0.1 }
shifStep={ 10 }
shiftStep={ 10 }
allowReset={ true }
/>
</FlexItem>
Expand Down

0 comments on commit fd7b8d2

Please sign in to comment.