docs: fix seven typos in design and overview docs#1021
Merged
Conversation
All caught by codespell on docs/, all in user-facing markdown (no code, identifier renames, or API names): docs/design/design.md filles -> files, diferent -> different, relevent -> relevant docs/design/thunks_...md sigatures -> signatures docs/overview/limits.md ohter -> other docs/overview/reference_safety.md succintly -> succinctly docs/overview/unstable_features.md intialization -> initialization False-positives in the same scan that I deliberately did NOT fix: re-declared / re-declare (both forms are valid), unparseable (both 'parseable' and 'parsable' forms are accepted), statics (a real C++ term). Signed-off-by: Arpit Jain <arpitjain099@gmail.com>
copybara-service Bot
pushed a commit
that referenced
this pull request
May 14, 2026
-- f071a05 by Arpit Jain <arpitjain099@gmail.com>: docs: fix seven typos in design and overview docs All caught by codespell on docs/, all in user-facing markdown (no code, identifier renames, or API names): docs/design/design.md filles -> files, diferent -> different, relevent -> relevant docs/design/thunks_...md sigatures -> signatures docs/overview/limits.md ohter -> other docs/overview/reference_safety.md succintly -> succinctly docs/overview/unstable_features.md intialization -> initialization False-positives in the same scan that I deliberately did NOT fix: re-declared / re-declare (both forms are valid), unparseable (both 'parseable' and 'parsable' forms are accepted), statics (a real C++ term). Signed-off-by: Arpit Jain <arpitjain099@gmail.com> FUTURE_COPYBARA_INTEGRATE_REVIEW=#1021 from arpitjain099:docs/typos f071a05 PiperOrigin-RevId: 914860013
copybara-service Bot
pushed a commit
that referenced
this pull request
May 14, 2026
-- f071a05 by Arpit Jain <arpitjain099@gmail.com>: docs: fix seven typos in design and overview docs All caught by codespell on docs/, all in user-facing markdown (no code, identifier renames, or API names): docs/design/design.md filles -> files, diferent -> different, relevent -> relevant docs/design/thunks_...md sigatures -> signatures docs/overview/limits.md ohter -> other docs/overview/reference_safety.md succintly -> succinctly docs/overview/unstable_features.md intialization -> initialization False-positives in the same scan that I deliberately did NOT fix: re-declared / re-declare (both forms are valid), unparseable (both 'parseable' and 'parsable' forms are accepted), statics (a real C++ term). Signed-off-by: Arpit Jain <arpitjain099@gmail.com> FUTURE_COPYBARA_INTEGRATE_REVIEW=#1021 from arpitjain099:docs/typos f071a05 PiperOrigin-RevId: 914860013
copybara-service Bot
pushed a commit
that referenced
this pull request
May 14, 2026
-- f071a05 by Arpit Jain <arpitjain099@gmail.com>: docs: fix seven typos in design and overview docs All caught by codespell on docs/, all in user-facing markdown (no code, identifier renames, or API names): docs/design/design.md filles -> files, diferent -> different, relevent -> relevant docs/design/thunks_...md sigatures -> signatures docs/overview/limits.md ohter -> other docs/overview/reference_safety.md succintly -> succinctly docs/overview/unstable_features.md intialization -> initialization False-positives in the same scan that I deliberately did NOT fix: re-declared / re-declare (both forms are valid), unparseable (both 'parseable' and 'parsable' forms are accepted), statics (a real C++ term). Signed-off-by: Arpit Jain <arpitjain099@gmail.com> FUTURE_COPYBARA_INTEGRATE_REVIEW=#1021 from arpitjain099:docs/typos f071a05 PiperOrigin-RevId: 914860013
copybara-service Bot
pushed a commit
that referenced
this pull request
May 15, 2026
-- f071a05 by Arpit Jain <arpitjain099@gmail.com>: docs: fix seven typos in design and overview docs All caught by codespell on docs/, all in user-facing markdown (no code, identifier renames, or API names): docs/design/design.md filles -> files, diferent -> different, relevent -> relevant docs/design/thunks_...md sigatures -> signatures docs/overview/limits.md ohter -> other docs/overview/reference_safety.md succintly -> succinctly docs/overview/unstable_features.md intialization -> initialization False-positives in the same scan that I deliberately did NOT fix: re-declared / re-declare (both forms are valid), unparseable (both 'parseable' and 'parsable' forms are accepted), statics (a real C++ term). Signed-off-by: Arpit Jain <arpitjain099@gmail.com> FUTURE_COPYBARA_INTEGRATE_REVIEW=#1021 from arpitjain099:docs/typos f071a05 PiperOrigin-RevId: 915639208
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.
Small docs cleanup across five files in
docs/design/anddocs/overview/. All caught by codespell, all in user-facing markdown.docs/design/design.mdfilles→files,diferent→different,relevent→relevantdocs/design/thunks_for_class_template_member_functions.mdsigatures→signaturesdocs/overview/limits.mdohter→otherdocs/overview/reference_safety.mdsuccintly→succinctlydocs/overview/unstable_features.mdintialization→initializationCodespell also flagged
re-declared/re-declare(both forms are acceptable),unparseable(bothunparsableandunparseableare widely accepted), andstatics(a real C++ term). Those were skipped on purpose.