summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-05-04 10:55:43 +1000
committerJohn Bampton <[email protected]>2021-06-16 08:34:54 +1000
commitdab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68 (patch)
tree5f120f199cdf21986ca8af4dde364cf7156ebbc7 /doc
parent50b6fafddf2fa37727e812fbda8b7a61a8ca1ca1 (diff)
downloadmruby-dab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68.tar.gz
mruby-dab5502e8a16d34d29adee6f7f9cb4f4ae0dfd68.zip
Run pre-commit with GitHub Actions
Running pre-commit with GitHub Actions now gives us more tests and coverage Remove duplicate GitHub Actions for merge conflicts and trailing whitespace Remove duplicate checks for markdownlint and yamllint from the GitHub Super-Linter Add new custom pre-commit hook running with a shell script to sort alphabetically and uniquify codespell.txt Add new pre-commit hook to check spelling with codespell https://github.com/codespell-project/codespell Fix spelling
Diffstat (limited to 'doc')
-rw-r--r--doc/limitations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/limitations.md b/doc/limitations.md
index c6681d5b8..265e4a2d4 100644
--- a/doc/limitations.md
+++ b/doc/limitations.md
@@ -55,7 +55,7 @@ To reduce memory consumption `Array` does not support instance variables.
```ruby
class Liste < Array
def initialize(str = nil)
- @feld = str
+ @field = str
end
end