]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
docs: sparse: convert sparse.txt to RST
authorMin-Hua Chen <minhuadotchen@gmail.com>
Sat, 2 Sep 2023 05:25:11 +0000 (13:25 +0800)
committerJonathan Corbet <corbet@lwn.net>
Tue, 10 Oct 2023 19:35:55 +0000 (13:35 -0600)
Follow Randy's advice [1] to move
Documentation/translations/zh_TW/dev-tools/sparse.txt
to
Documentation/translations/zh_TW/dev-tools/sparse.rst

[1] https://lore.kernel.org/lkml/bfab7c5b-e4d3-d8d9-afab-f43c0cdf26cf@infradead.org/

Suggested-by: Jonathan Corbet <corbet@lwn.net>
Suggested-by: Randy Dunlap <rdunlap@infradead.org>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Min-Hua Chen <minhuadotchen@gmail.com>
[jc: fixed htmldocs warning]
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20230902052512.12184-3-minhuadotchen@gmail.com
Documentation/translations/zh_TW/dev-tools/sparse.rst [moved from Documentation/translations/zh_TW/dev-tools/sparse.txt with 98% similarity]

similarity index 98%
rename from Documentation/translations/zh_TW/dev-tools/sparse.txt
rename to Documentation/translations/zh_TW/dev-tools/sparse.rst
index 35d3d1d748e6f12ca5bee0ea945ef0b98d91bf20..11d64709d6a477101249de9831c77d01ce737243 100644 (file)
@@ -27,7 +27,7 @@ Copyright 2006 Bob Copeland <me@bobcopeland.com>
 使用 sparse 工具做類型檢查
 ~~~~~~~~~~~~~~~~~~~~~~~~~~
 
-"__bitwise" 是一種類型屬性,所以你應該這樣使用它
+"__bitwise" 是一種類型屬性,所以你應該這樣使用它::
 
         typedef int __bitwise pm_request_t;
 
@@ -47,7 +47,7 @@ Copyright 2006 Bob Copeland <me@bobcopeland.com>
 坦白來說,你並不需要使用枚舉類型。上面那些實際都可以濃縮成一個特殊的"int
 __bitwise"類型。
 
-所以更簡單的辦法只要這樣做
+所以更簡單的辦法只要這樣做::
 
        typedef int __bitwise pm_request_t;