aboutsummaryrefslogtreecommitdiffstats
path: root/docs/C++-Standard-Libraries.md
diff options
context:
space:
mode:
authorEricFromCanada2017-03-25 22:53:33 -0400
committerEricFromCanada2017-03-25 22:53:33 -0400
commitdc7f74210a3d03d829cd459bf3171129f3e2f60d (patch)
tree97662357e8610c406314dfa770380d76b451dd04 /docs/C++-Standard-Libraries.md
parent59fab56afdf6129c37ff30eb842bf7bff41348e0 (diff)
downloadbrew-dc7f74210a3d03d829cd459bf3171129f3e2f60d.tar.bz2
docs: code example reformatting
Add labeled fences to most code blocks, monospace terms where appropriate, omit "$" when referring to variables
Diffstat (limited to 'docs/C++-Standard-Libraries.md')
-rw-r--r--docs/C++-Standard-Libraries.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/C++-Standard-Libraries.md b/docs/C++-Standard-Libraries.md
index c1725f202..7f41c9007 100644
--- a/docs/C++-Standard-Libraries.md
+++ b/docs/C++-Standard-Libraries.md
@@ -3,10 +3,10 @@
There are two C++ standard libraries supported by Apple compilers.
The default for 10.8 and earlier is **libstdc++**, supported by Apple GCC
-compilers, GNU GCC compilers, and clang. This was marked deprecated with a
+compilers, GNU GCC compilers, and `clang`. This was marked deprecated with a
warning during compile as of Xcode 8.
-The default for 10.9 is **libc++**, which is also the default for clang on older
+The default for 10.9 is **libc++**, which is also the default for `clang` on older
platforms when building C++11 code.
There are subtle incompatibilities between several of the C++ standard libraries,