summaryrefslogtreecommitdiff
path: root/Documentation/translations
diff options
context:
space:
mode:
authorMin-Hua Chen <minhuadotchen@gmail.com>2023-09-02 13:25:11 +0800
committerJonathan Corbet <corbet@lwn.net>2023-10-10 13:35:55 -0600
commit006b84bcbe8dc0977fb788c458072be27801f4b7 (patch)
treee571a790c86688623b4d9d01bd3f548704cdc2a6 /Documentation/translations
parent253f68f413a87a4e2bd93e61b00410e5e1b7b774 (diff)
docs: sparse: convert sparse.txt to RST
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
Diffstat (limited to 'Documentation/translations')
-rw-r--r--Documentation/translations/zh_TW/dev-tools/sparse.rst (renamed from Documentation/translations/zh_TW/dev-tools/sparse.txt)4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/translations/zh_TW/dev-tools/sparse.txt b/Documentation/translations/zh_TW/dev-tools/sparse.rst
index 35d3d1d748e6..11d64709d6a4 100644
--- a/Documentation/translations/zh_TW/dev-tools/sparse.txt
+++ b/Documentation/translations/zh_TW/dev-tools/sparse.rst
@@ -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;