[libc-commits] [libc] eac734a - [libc][docs] Fix libc docs build post #129138 (#130184)

via libc-commits libc-commits at lists.llvm.org
Thu Mar 6 14:07:47 PST 2025


Author: Aiden Grossman
Date: 2025-03-06T14:07:44-08:00
New Revision: eac734aab6b62518a0cd7aa3b20a990fef360b2c

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

LOG: [libc][docs] Fix libc docs build post #129138 (#130184)

The docs build action was failing with libc due to checks.rst not
existing in the expected path. This patch adjusts the path to the actual
path which seems to make everything happy. It seems like this did not
show up before as stdfix.rst was not included in a place that actually
caused it to get picked up by sphinx.

Added: 
    

Modified: 
    libc/docs/headers/stdfix.rst

Removed: 
    


################################################################################
diff  --git a/libc/docs/headers/stdfix.rst b/libc/docs/headers/stdfix.rst
index 3b93f29a4abdc..5189439c63306 100644
--- a/libc/docs/headers/stdfix.rst
+++ b/libc/docs/headers/stdfix.rst
@@ -2,7 +2,7 @@
 StdFix Functions
 ================
 
-.. include:: ../../check.rst
+.. include:: ../check.rst
 
 Standards and Goals
 -------------------


        


More information about the libc-commits mailing list