[llvm] Issue-71941 Fix typo in documenation (PR #76836)
    via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Thu Jan  4 04:21:29 PST 2024
    
    
  
https://github.com/alekuz01 updated https://github.com/llvm/llvm-project/pull/76836
>From 150bb676d6a75e9b9f97171079f7a0c88d7d951b Mon Sep 17 00:00:00 2001
From: Aleksei Kuzmenko <aleksei.kuzmenko at arm.com>
Date: Wed, 3 Jan 2024 15:27:02 +0000
Subject: [PATCH] Issue-71941 Fix typo in documenation
---
 llvm/docs/CMake.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/llvm/docs/CMake.rst b/llvm/docs/CMake.rst
index 7dd3fd26022e5c..13d1912ceb2ab8 100644
--- a/llvm/docs/CMake.rst
+++ b/llvm/docs/CMake.rst
@@ -1118,10 +1118,10 @@ And then changing ``<project dir>/<pass name>/CMakeLists.txt`` to
 When you are done developing your pass, you may wish to integrate it
 into the LLVM source tree. You can achieve it in two easy steps:
 
-#. Copying ``<pass name>`` folder into ``<LLVM root>/lib/Transform`` directory.
+#. Copying ``<pass name>`` folder into ``<LLVM root>/lib/Transforms`` directory.
 
 #. Adding ``add_subdirectory(<pass name>)`` line into
-   ``<LLVM root>/lib/Transform/CMakeLists.txt``.
+   ``<LLVM root>/lib/Transforms/CMakeLists.txt``.
 
 Compiler/Platform-specific topics
 =================================
    
    
More information about the llvm-commits
mailing list