🐛 fix: correct typo from "leggacy" to "legendary" in estimate time#1968
Merged
🐛 fix: correct typo from "leggacy" to "legendary" in estimate time#1968
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This pull request corrects a spelling typo throughout the estimate time functionality, changing "leggacy" to "legendary" in variable names, command option names, descriptions, and output text.
- Updated Discord command option from "include-leggacy" to "include-legendary"
- Renamed variable from
includeLeggacytoincludeLegendarythroughout the function - Updated user-facing descriptions and output text to use correct spelling
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| estStrMax := c.EstimatedDurationMax.Round(time.Minute).String() | ||
| estStrMax = strings.TrimRight(estStrMax, "0s") | ||
| str += fmt.Sprintf("Leggacy Set: **%s** w/CS **%d**\n", estStrMax, int64(c.CxpMax)) | ||
| str += fmt.Sprintf("Leggy Set: **%s** w/CS **%d**\n", estStrMax, int64(c.CxpMax)) |
There was a problem hiding this comment.
The text uses "Leggy Set" but should be "Legendary Set" to be consistent with the other changes in this PR. All other occurrences of the typo have been corrected to "legendary" (including the option name "include-legendary" at lines 40-41 and the variable name "includeLegendary" at lines 53, 66, and 75), so this output message should also use "Legendary Set" instead of "Leggy Set".
Suggested change
| str += fmt.Sprintf("Leggy Set: **%s** w/CS **%d**\n", estStrMax, int64(c.CxpMax)) | |
| str += fmt.Sprintf("Legendary Set: **%s** w/CS **%d**\n", estStrMax, int64(c.CxpMax)) |
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.
No description provided.