summaryrefslogtreecommitdiff
path: root/docs/Modules.rst
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-09-09 19:57:49 +0000
committerSean Silva <silvas@purdue.edu>2013-09-09 19:57:49 +0000
commit9522ae1330623dc2f809ca26b0cc50393e66c6ee (patch)
treeea2fb0c54a4beedb373cdca901cdcdde1c72fdff /docs/Modules.rst
parent5e2ce20c56a0435e6e84c0832e365aeb57e4d197 (diff)
downloadclang-9522ae1330623dc2f809ca26b0cc50393e66c6ee.tar.gz
clang-9522ae1330623dc2f809ca26b0cc50393e66c6ee.tar.bz2
clang-9522ae1330623dc2f809ca26b0cc50393e66c6ee.tar.xz
[docs] Prominently note modules are experimental.
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
Diffstat (limited to 'docs/Modules.rst')
-rw-r--r--docs/Modules.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/Modules.rst b/docs/Modules.rst
index 6ac334db6d..c086644ee3 100644
--- a/docs/Modules.rst
+++ b/docs/Modules.rst
@@ -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):