[clang] Fix typo in "translation unit" in analyzer doc CommandLineUsage.rst (PR #112966)

via cfe-commits cfe-commits at lists.llvm.org
Fri Oct 18 12:58:36 PDT 2024


https://github.com/BenBlumer created https://github.com/llvm/llvm-project/pull/112966

Fix typo in "translation unit" in analyzer doc CommandLineUsage.rst

>From cc1f072fa7c10147d19fa67037a642c7967914db Mon Sep 17 00:00:00 2001
From: BrnBlrg <BenjaminAaronBlumer at gmail.com>
Date: Fri, 18 Oct 2024 12:57:54 -0700
Subject: [PATCH] Fix typo in CommandLineUsage.rst

Fix typo in "translation unit".
---
 clang/docs/analyzer/user-docs/CommandLineUsage.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/clang/docs/analyzer/user-docs/CommandLineUsage.rst b/clang/docs/analyzer/user-docs/CommandLineUsage.rst
index d7f8253469df40..59f8187f374a95 100644
--- a/clang/docs/analyzer/user-docs/CommandLineUsage.rst
+++ b/clang/docs/analyzer/user-docs/CommandLineUsage.rst
@@ -2,7 +2,7 @@ Command Line Usage: scan-build and CodeChecker
 ==============================================
 
 This document provides guidelines for running the static analyzer from the command line on whole projects.
-CodeChecker and scan-build are two CLI tools for using CSA on multiple files (tranlation units).
+CodeChecker and scan-build are two CLI tools for using CSA on multiple files (translation units).
 Both provide a way of driving the analyzer, detecting compilation flags, and generating reports.
 CodeChecker is more actively maintained, provides heuristics for working with multiple versions of popular compilers and it also comes with a web-based GUI for viewing, filtering, categorizing and suppressing the results.
 Therefore CodeChecker is recommended in case you need any of the above features or just more customizability in general.



More information about the cfe-commits mailing list