diff options
author | Kazu Hirata <kazu@google.com> | 2025-08-01 07:01:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-01 07:01:50 -0700 |
commit | 183b38078a51714bbcbeaabfa3cc84670cd575f8 (patch) | |
tree | 0e554015df7becb1ce7be8dbfe75724c9c89d513 /llvm/docs/tutorial/MyFirstLanguageFrontend | |
parent | 022039e4978991bd15263a78122166c0d3def8bb (diff) | |
download | llvm-183b38078a51714bbcbeaabfa3cc84670cd575f8.zip llvm-183b38078a51714bbcbeaabfa3cc84670cd575f8.tar.gz llvm-183b38078a51714bbcbeaabfa3cc84670cd575f8.tar.bz2 |
[llvm] Proofread *.rst (#151087)
This patch hyphenates words that are used as adjecives, such as:
- architecture specific
- human readable
- implementation defined
- language independent
- language specific
- machine readable
- machine specific
- target independent
- target specific
Diffstat (limited to 'llvm/docs/tutorial/MyFirstLanguageFrontend')
-rw-r--r-- | llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst index 7b9105b..a739936 100644 --- a/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst +++ b/llvm/docs/tutorial/MyFirstLanguageFrontend/LangImpl10.rst @@ -129,7 +129,7 @@ course, C source code is not actually portable in general either - ever port a really old application from 32- to 64-bits?). The problem with C (again, in its full generality) is that it is heavily -laden with target specific assumptions. As one simple example, the +laden with target-specific assumptions. As one simple example, the preprocessor often destructively removes target-independence from the code when it processes the input text: |