diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2018-09-20 08:05:01 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2018-09-20 08:05:01 +0000 |
commit | 6616b4c9e9ecdf68864cc1bdea4d4fa9dfd6f692 (patch) | |
tree | 916a62a2b1304cc59cfd1b27fdf3cdb0a0f6db98 /libcxx | |
parent | 12981433692eb7a22e34bd9a8c31a225b9fc4b49 (diff) | |
download | bcm5719-llvm-6616b4c9e9ecdf68864cc1bdea4d4fa9dfd6f692.tar.gz bcm5719-llvm-6616b4c9e9ecdf68864cc1bdea4d4fa9dfd6f692.zip |
fix some typos in the doc
llvm-svn: 342628
Diffstat (limited to 'libcxx')
-rw-r--r-- | libcxx/docs/DesignDocs/CapturingConfigInfo.rst | 2 | ||||
-rw-r--r-- | libcxx/docs/DesignDocs/VisibilityMacros.rst | 6 | ||||
-rw-r--r-- | libcxx/docs/conf.py | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libcxx/docs/DesignDocs/CapturingConfigInfo.rst b/libcxx/docs/DesignDocs/CapturingConfigInfo.rst index 88102251d93..29156bff8bc 100644 --- a/libcxx/docs/DesignDocs/CapturingConfigInfo.rst +++ b/libcxx/docs/DesignDocs/CapturingConfigInfo.rst @@ -28,7 +28,7 @@ Design Goals It makes developers lives harder if they have to regenerate the libc++ headers every time they are modified. -* The solution should not make any of the libc++ headers dependant on +* The solution should not make any of the libc++ headers dependent on files generated by the build system. The headers should be able to compile out of the box without any modification. diff --git a/libcxx/docs/DesignDocs/VisibilityMacros.rst b/libcxx/docs/DesignDocs/VisibilityMacros.rst index 9a757ff53f3..08debbcddf5 100644 --- a/libcxx/docs/DesignDocs/VisibilityMacros.rst +++ b/libcxx/docs/DesignDocs/VisibilityMacros.rst @@ -82,9 +82,9 @@ Visibility Macros **_LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT** This macro controls the default value for `_LIBCPP_HIDE_FROM_ABI_PER_TU`. When the macro is defined, per TU ABI insulation is enabled by default, and - `_LIBCPP_HIDE_FROM_ABI_PER_TU` is defined to 1 unless overriden by users. + `_LIBCPP_HIDE_FROM_ABI_PER_TU` is defined to 1 unless overridden by users. Otherwise, per TU ABI insulation is disabled by default, and - `_LIBCPP_HIDE_FROM_ABI_PER_TU` is defined to 0 unless overriden by users. + `_LIBCPP_HIDE_FROM_ABI_PER_TU` is defined to 0 unless overridden by users. This macro is intended for vendors to control whether they want to ship libc++ with per TU ABI insulation enabled by default. Users can always @@ -92,7 +92,7 @@ Visibility Macros appropriately. By default, this macro is not defined, which means that per TU ABI insulation - is not provided unless explicitly overriden by users. + is not provided unless explicitly overridden by users. **_LIBCPP_TYPE_VIS** Mark a type's typeinfo, vtable and members as having default visibility. diff --git a/libcxx/docs/conf.py b/libcxx/docs/conf.py index f532e303c6c..50b372cf84e 100644 --- a/libcxx/docs/conf.py +++ b/libcxx/docs/conf.py @@ -241,7 +241,7 @@ texinfo_documents = [ #texinfo_show_urls = 'footnote' -# FIXME: Define intersphinx configration. +# FIXME: Define intersphinx configuration. intersphinx_mapping = {} |