]> granicus.if.org Git - clang/commitdiff
[docs] Prominently note modules are experimental.
authorSean Silva <silvas@purdue.edu>
Mon, 9 Sep 2013 19:57:49 +0000 (19:57 +0000)
committerSean Silva <silvas@purdue.edu>
Mon, 9 Sep 2013 19:57:49 +0000 (19:57 +0000)
It was really hard to tell that modules are experimental. This makes it
really clear by

* Noting the experimental status in the title.
* Moving the "warning" above the table of contents.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@190340 91177308-0d34-0410-b5e6-96231b3b80d8

docs/Modules.rst

index 6ac334db6df2ae503f49c12f661f397675e0346b..c086644ee3f946820bfe47555c69ad537ebd5b0c 100644 (file)
@@ -1,14 +1,14 @@
-=======
-Modules
-=======
-
-.. contents::
-   :local:
+======================
+Modules (EXPERIMENTAL)
+======================
 
 .. warning::
    The functionality described on this page is still experimental! Please
    try it out and send us bug reports!
 
+.. contents::
+   :local:
+
 Introduction
 ============
 Most software is built using a number of software libraries, including libraries supplied by the platform, internal libraries built as part of the software itself to provide structure, and third-party libraries. For each library, one needs to access both its interface (API) and its implementation. In the C family of languages, the interface to a library is accessed by including the appropriate header files(s):