Re: [PATCH v2 2/4] docs/zh_CN: Update rust/general-information.rst translation

From: Ben Guo

Date: Mon Jul 13 2026 - 23:40:10 EST


On 7/13/26 10:37 AM, Dongliang Mu wrote:
>> Signed-off-by: Ben Guo <ben.guo@xxxxxxxxxxxxx>
>> ---
>>   .../zh_CN/rust/general-information.rst        | 82 ++++++++++++++++++-
>>   1 file changed, 79 insertions(+), 3 deletions(-)
>>
>> diff --git a/Documentation/translations/zh_CN/rust/general-
>> information.rst b/Documentation/translations/zh_CN/rust/general-
>> information.rst
>> index 9b5e37e13f3..ff9355cb8c8 100644
>> --- a/Documentation/translations/zh_CN/rust/general-information.rst
>> +++ b/Documentation/translations/zh_CN/rust/general-information.rst
>> @@ -13,6 +13,14 @@
>>   本文档包含了在内核中使用Rust支持时需要了解的有用信息。
>> +``no_std``
>> +----------
>> +
>> +内核中的 Rust 支持只能链接 `core <https://doc.rust-lang.org/core/>`_,
>> +而不能链接 `std <https://doc.rust-lang.org/std/>`_。供内核使用的 crate
>> +必须使用 ``#![no_std]`` 属性选择这种行为。
>> +
>> +
>>   .. _rust_code_documentation_zh_cn:
>>   代码文档
>> @@ -20,10 +28,18 @@
>>   Rust内核代码使用其内置的文档生成器 ``rustdoc`` 进行记录。
>> -生成的HTML文档包括集成搜索、链接项(如类型、函数、常量)、源代码等。
>> 它们可以在以下地址阅读
>> -(TODO:当在主线中时链接,与其他文档一起生成):
>> +生成的HTML文档包括集成搜索、链接项(如类型、函数、常量)、源代码等。
> Add spaces before and after HTML
Dongliang,

Thanks, I will check for similar spacing issues and fix them in the next
version.

Best,
Ben