diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2018-02-13 08:12:00 +0000 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2018-02-13 08:12:00 +0000 |
commit | f684c9c83c62b4b7552911f41eddb38552ec62d5 (patch) | |
tree | 5ca5f2b898bc35d3234821ebd23c8b5f27053a6d /libcxx/docs/DesignDocs | |
parent | 9084a3b118498c2f6b6a179578d3e00ea6fd0ef7 (diff) | |
download | bcm5719-llvm-f684c9c83c62b4b7552911f41eddb38552ec62d5.tar.gz bcm5719-llvm-f684c9c83c62b4b7552911f41eddb38552ec62d5.zip |
Fix typos.
Reviewers: mclow.lists, EricWF
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D43224
llvm-svn: 324989
Diffstat (limited to 'libcxx/docs/DesignDocs')
-rw-r--r-- | libcxx/docs/DesignDocs/AvailabilityMarkup.rst | 2 | ||||
-rw-r--r-- | libcxx/docs/DesignDocs/CapturingConfigInfo.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/docs/DesignDocs/AvailabilityMarkup.rst b/libcxx/docs/DesignDocs/AvailabilityMarkup.rst index 4a85c698f23..b8b44509790 100644 --- a/libcxx/docs/DesignDocs/AvailabilityMarkup.rst +++ b/libcxx/docs/DesignDocs/AvailabilityMarkup.rst @@ -58,7 +58,7 @@ Testing Some parameters can be passed to lit to run the test-suite and exercising the availability. -* The `platform` parameter controls the deployement target. For example lit can +* The `platform` parameter controls the deployment target. For example lit can be invoked with `--param=platform=macosx10.8`. Default is the current host. * The `use_system_cxx_lib` parameter indicates to use another library than the just built one. Invoking lit with `--param=use_system_cxx_lib=true` will run diff --git a/libcxx/docs/DesignDocs/CapturingConfigInfo.rst b/libcxx/docs/DesignDocs/CapturingConfigInfo.rst index 73378a21c0a..88102251d93 100644 --- a/libcxx/docs/DesignDocs/CapturingConfigInfo.rst +++ b/libcxx/docs/DesignDocs/CapturingConfigInfo.rst @@ -46,7 +46,7 @@ we do NOTHING. Otherwise we create a custom installation rule that modifies the installed __config header. The rule first generates a dummy "__config_site" header containing the required -#defines. The contents of the dummy header are then prependend to the installed +#defines. The contents of the dummy header are then prepended to the installed __config header. By manually prepending the files we avoid the cost of an extra #include and we allow the __config header to be ignorant of the extra configuration all together. An example "__config" header generated when |