[clang] 33d848b - Fix typo; NFC

Aaron Ballman via cfe-commits cfe-commits at lists.llvm.org
Fri Nov 11 10:02:50 PST 2022


Author: Aaron Ballman
Date: 2022-11-11T13:02:41-05:00
New Revision: 33d848b992ee1d3a6b39b3b6f1a42b46d583bf72

URL: https://github.com/llvm/llvm-project/commit/33d848b992ee1d3a6b39b3b6f1a42b46d583bf72
DIFF: https://github.com/llvm/llvm-project/commit/33d848b992ee1d3a6b39b3b6f1a42b46d583bf72.diff

LOG: Fix typo; NFC

Co-authored-by: Guillot Tony <tony.guillot at protonmail.com>

Added: 
    

Modified: 
    clang/include/clang/Basic/AttrDocs.td

Removed: 
    


################################################################################
diff  --git a/clang/include/clang/Basic/AttrDocs.td b/clang/include/clang/Basic/AttrDocs.td
index 3b441e757fae8..40e1dd9cca5c1 100644
--- a/clang/include/clang/Basic/AttrDocs.td
+++ b/clang/include/clang/Basic/AttrDocs.td
@@ -5768,7 +5768,7 @@ by showing the control-flow statement where the path diverges.
     if (somePredicate()) {
       ...
       callback();
-    } esle {
+    } else {
       callback(); // OK: callback is called on every path
     }
   }


        


More information about the cfe-commits mailing list