[Fix] Correct misspellings across source and test files#535
Merged
sajmera-pensando merged 1 commit intoROCm:mainfrom May 9, 2026
Merged
[Fix] Correct misspellings across source and test files#535sajmera-pensando merged 1 commit intoROCm:mainfrom
sajmera-pensando merged 1 commit intoROCm:mainfrom
Conversation
Contributor
Author
|
/cc @yansun1996 |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes a set of misspell linter-reported typos across the GPU Operator codebase (controllers, API types comments, and e2e/unit tests), improving readability and log/message clarity without changing runtime behavior.
Changes:
- Corrected misspellings in e2e test log messages and strings.
- Corrected misspellings in controller log messages and comments.
- Corrected misspellings in API type comments and unit test case descriptions.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
tests/e2e/exporter_test.go |
Fixes “occured” → “occurred” in error log messages during pod listing. |
tests/e2e/cluster_test.go |
Fixes “opertor” → “operator” in an e2e deployment log message. |
internal/utils_test.go |
Fixes “enbale” → “enable” in unit test case descriptions. |
internal/controllers/device_config_reconciler.go |
Fixes “requries”/“disbaled” typos in comments and log messages. |
api/v1alpha1/deviceconfig_types.go |
Fixes “aplied” → “applied” in a CRD/API field comment. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: Leonardo Ochoa-Aday <lochoa@redhat.com>
77c6e78 to
bee5640
Compare
yansun1996
approved these changes
May 8, 2026
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
misspelllinter across 5 files:occured→occurred(3 instances intests/e2e/exporter_test.go)requries→requires(internal/controllers/device_config_reconciler.go)disbaled→disabled(internal/controllers/device_config_reconciler.go)aplied→applied(api/v1alpha1/deviceconfig_types.go)enbale→enable(3 instances ininternal/utils_test.go)opertor→operator(tests/e2e/cluster_test.go)Signed-off-by: Leonardo Ochoa-Aday lochoa@redhat.com