Fix duplicated-word and misspelling typos in comments and docs#704
Open
durvesh1992 wants to merge 1 commit into
Open
Fix duplicated-word and misspelling typos in comments and docs#704durvesh1992 wants to merge 1 commit into
durvesh1992 wants to merge 1 commit into
Conversation
Corrects high-confidence typos found across comments, documentation, and a flag-description string. No logic or behavior changes. - Duplicated words: "the the", "a a", "to to", "of of", "on on", "with with", "that that", "is is" (-> "it is"), "at at" - Misspellings: intialization -> initialization, compatiblity/compatibile -> compatibility/compatible, yeild -> yield, returing -> returning Generated files were intentionally left untouched.
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
Fixes a batch of high-confidence typos in comments, documentation, and one flag-description string. These are inspection-only changes — no logic or behavior is modified, and no generated files are touched.
Found via a duplicated-word + common-misspelling sweep over non-generated
.cpp/.h/.thrift/.py/.md/.javasources. Care was taken to avoid false positives such as legitimate C++/Thrift tokens (e.g.the THeader,the THrottle).Changes
Duplicated words
the the structure/the the status/the the name/the the task/the the include/the the end/the the Rust/the the call site/the the optionalthe …a a struct/a a pointer/a a job/a a folly::SerialExecutora …to to serialize/to to read/to to be sane/prior to to theto …with with ordinal/with with eachwith …of of idleof idleon on(depend on)onthat that the seedthat the seedare are the onesare the onesat at mostat mostto to the pextto do the pextaccording the the resultaccording to the resultif is is not detachedif it is not detachedMisspellings
intialization/intializedinitialization/initializedcompatiblity/compatibilecompatibility/compatibleyeildyieldreturingreturningNotes
the the Rustandcompatiblitystrings also appear in generatedgen-*/*/out/fixtures; those were intentionally not edited since they are regenerated from the (now-fixed) sources.