[fix](doc) typo, anchor, and example-output corrections across docs#3721
Merged
Conversation
- system-tables/overview.md: frontmatter declared `language: zh-CN` on the English file; switch to `en`. - mysql-load-manual.md, local-file.md: result line said `Query OK, 6 row affected` — pluralize to `6 rows affected`. - transaction.md: result row had a truncated name `Alexande`; restore `Alexander`. - update-of-aggregate-model.md: two links to `partial-column-update.md#聚合模型的列更新` (a Chinese anchor that does not exist in the English file); repoint to the actual heading slug `#column-update-on-the-aggregate-key-model`. - update-of-unique-model.md: link anchor `#column-update-for-the-unique-model` does not exist; the heading is `## Column Update on the Unique Key Model`, so repoint to `#column-update-on-the-unique-key-model`. - separating-storage-compute/config-cg.md and config-ms.md: four references to `install-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源` (a Chinese anchor that does not exist in the English target); the equivalent English heading is `### 2. Modify Key Configurations` under Step 3, so repoint to `apache#2-modify-key-configurations`. - separating-storage-compute/config-cluster.md: link to `config-fe#自定义启动配置` (Chinese anchor in cross-file English link); the heading `## Custom startup configuration` slugs to `#custom-startup-configuration`, which the same file already uses correctly elsewhere. - numeric-literal.md: integer-range table had every exponent doubled (`TINYINT: -2^8 to 2^8 - 1` etc.). Signed integer ranges are `-2^(n-1) to 2^(n-1) - 1`, so the correct values are 2^7, 2^15, 2^31, 2^63, 2^127. - parallelism-tuning.md: ProbeRows printed `1.4662330332B (1462330332)` — the readable mantissa has a duplicate `6`. The raw value `1462330332` corresponds to `1.462330332B`, which matches the RowsProduced row immediately below. - datetime-conversion.md: lower bound shown with 7 fractional digits (`0000-01-01 00:00:00.0000000`); DATETIME max precision is 6, so trim one zero to match the upper bound (`23:59:59.999999`). - array-count.md: `<version since="2.0.0">` was never closed; add `</version>` to match the array-avg.md convention. Applied across docs/, versioned_docs/{2.1,3.x,4.x}/, and i18n/zh-CN/ where the same content exists. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Small mechanical fixes — typos, broken anchors, and one example output that didn't match its surrounding values.
admin-manual/system-tables/overview.md\"language\": \"zh-CN\"on the English file\"en\"data-operate/import/import-way/mysql-load-manual.md,data-operate/import/data-source/local-file.mdQuery OK, 6 row affected6 rows affecteddata-operate/transaction.mdSELECT *result row showed a truncated nameAlexandeAlexanderdata-operate/update/update-of-aggregate-model.mdpartial-column-update.md#聚合模型的列更新— a Chinese anchor that has no English equivalent#column-update-on-the-aggregate-key-modeldata-operate/update/update-of-unique-model.md#column-update-for-the-unique-modeldoes not exist## Column Update on the Unique Key Model, so use#column-update-on-the-unique-key-modelinstall/deploy-on-kubernetes/separating-storage-compute/config-cg.md,config-ms.mdinstall-doris-cluster.md#3-配置-dorisdisaggregatedcluster-资源(Chinese anchor on the English file)### 2. Modify Key Configurationsunder Step 3, so repoint to#2-modify-key-configurationsinstall/deploy-on-kubernetes/separating-storage-compute/config-cluster.mdconfig-fe#自定义启动配置(Chinese anchor in a cross-file English link)## Custom startup configurationslugs to#custom-startup-configuration(the same anchor that config-fe.md itself uses correctly elsewhere)sql-manual/basic-element/literal/numeric-literal.mdTINYINT: -2^8 to 2^8 - 1, etc.)[-2^(n-1), 2^(n-1) - 1], so the correct exponents are 2^7, 2^15, 2^31, 2^63, 2^127query-acceleration/tuning/tuning-execution/parallelism-tuning.md1.4662330332B (1462330332)— the readable mantissa had a duplicate61462330332corresponds to1.462330332B, which matches the RowsProduced row immediately belowsql-manual/basic-element/sql-data-types/conversion/datetime-conversion.md0000-01-01 00:00:00.0000000); DATETIME max precision is 6 (matches the upper bound23:59:59.999999)sql-manual/sql-functions/scalar-functions/array-functions/array-count.md<version since=\"2.0.0\">was never closed</version>to match the array-avg.md conventionApplied across
docs/,versioned_docs/version-{2.1,3.x,4.x}/, andi18n/zh-CN/where the affected content exists.Test plan
partial-column-update.md,install-doris-cluster.md,config-fe.md).