Skip to content

Commit f010ae0

Browse files
committedJan 30, 2025·
Fix a few typos
1 parent 8bdf76c commit f010ae0

File tree

116 files changed

+189
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+189
-182
lines changed
 

‎.codespellrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[codespell]
2+
skip = ./.git,tags,go.mod,go.sum,./test/image/latin10k.txt,./website/assets/images
3+
ignore-words-list = savable,adin

‎Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ endif
9797
##
9898
## Development helpers and tooling.
9999
##
100-
## These targets faciliate local development by automatically
100+
## These targets facilitate local development by automatically
101101
## installing and configuring a runtime. Several variables may
102102
## be used here to tweak the installation:
103103
## RUNTIME - The name of the installed runtime (default: $BRANCH_NAME).
@@ -755,3 +755,7 @@ release: $(RELEASE_KEY) $(RELEASE_ARTIFACTS)/$(ARCH)
755755
tag: ## Creates and pushes a release tag.
756756
@tools/tag_release.sh "$(RELEASE_COMMIT)" "$(RELEASE_NAME)" "$(RELEASE_NOTES)"
757757
.PHONY: tag
758+
759+
codespell:
760+
codespell
761+
.PHONY: codespell

0 commit comments

Comments
 (0)
Please sign in to comment.