fix: Correct typos and grammatical errors across codebase and documentation#66
Open
mahanadh wants to merge 2 commits intograniticio:masterfrom
Open
fix: Correct typos and grammatical errors across codebase and documentation#66mahanadh wants to merge 2 commits intograniticio:masterfrom
mahanadh wants to merge 2 commits intograniticio:masterfrom
Conversation
- Fix spelling errors: intialise, Mutally, indentification, outout - Fix grammar issues: "the the", "used a the", "have as more" - Fix incorrect type reference: float63 → float64 - Fix broken markdown link in CONTRIBUTING.md - Fix word choice: proceeds → precedes, it's → its (possessive)
- Fix spelling errors: intialise, Mutally, indentification, outout - Fix grammar issues: "the the", "used a the", "have as more" - Fix incorrect type reference: float63 → float64 - Fix broken markdown link in CONTRIBUTING.md - Fix word choice: proceeds → precedes, it's → its (possessive)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR fixes various typos and grammatical errors found throughout the codebase and documentation.
Changes
Code Comments
granitic.go: "intialise" → "initialise"logging/format.go,logging/structured.go,facility/httpserver/structured.go: "according the the" → "according to the"logging/format.go: "Mutally" → "Mutually" (2 occurrences)rdbms/manager.go: "used a the" → "used as the"rdbms/tags.go: "to the the" → "to the"config/config.go: "data a the" → "data at the", "float63" → "float64", "eror" → "error"ioc/component.go: "the the component" → "the component", "proceeds" → "precedes"validate/validate.go: "for the the type" → "for the type"Documentation
README.md: "RDMBS" → "RDBMS"RELEASE_NOTES.md: Multiple grammar fixesCONTRIBUTING.md: Fixed broken markdown link for issue templatedoc/ref/cfg-principles.md: "the the configuration" → "the configuration"doc/ref/ioc-principles.md: "container be interacted" → "container can be interacted"doc/ref/gpr-build.md: "outout" → "output", "indentification" → "identification"doc/ref/vld-operations.md: "Mutally Exclusive" → "Mutually Exclusive"doc/ref/ws-capture.md: "the the client" → "the client"doc/ref/ws-logic.md: "intialisation" → "initialisation"File Rename (if applicable)
config/intial_test.go→config/initial_test.goTesting
go test ./...passesgo fmt ./...appliedgo vet ./...passesNotes
No functional changes—documentation and comments only.