[fix] translate bit-length.md body to English#3708
Merged
Conversation
The English bit-length.md (current and version-4.x copies) had its "language" set to "en" but its entire body (section headings and prose) was Chinese. The frontmatter "description" was also missing the `*` in "字节数 8" (should be "字节数 * 8"). This translates the body to English to match the language tag, and uses "× 8" in the description to make the multiplication explicit.
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
The English
bit-length.md(docs/andversioned_docs/version-4.x/) declares"language": "en"in its frontmatter, but the entire body (section headings —## 描述,## 语法,## 参数,## 返回值,## 示例— and the prose) is Chinese. The frontmatterdescriptionwas also missing the*between字节数and8("字节数 8" instead of "字节数 * 8").This PR translates the body to English to match the declared language. The headings become
## Description,## Syntax,## Parameters,## Return Value,## Examples, and the description uses× 8to make the multiplication explicit. The code examples and result tables are unchanged.Test plan