about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-11-04 13:24:50 +0000
committerbors <bors@rust-lang.org>2015-11-04 13:24:50 +0000
commit14db07465944d2be293176dbafb0eb9d0d41595a (patch)
tree956dbdb733096a586c52ee80d6904dd494e6e626 /src
parent1be3f9f6023dd7583dc453ee2dff93e5c9ead441 (diff)
parent900f36fde3c8cc78db1d889e9543aa522cd326da (diff)
downloadrust-14db07465944d2be293176dbafb0eb9d0d41595a.tar.gz
rust-14db07465944d2be293176dbafb0eb9d0d41595a.zip
Auto merge of #29528 - amitsaha:rust-inside-other-languages-minor, r=nikomatsakis
When referring to the different shared library extensions, specify the OS explicitly.
Diffstat (limited to 'src')
-rw-r--r--src/doc/trpl/rust-inside-other-languages.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/doc/trpl/rust-inside-other-languages.md b/src/doc/trpl/rust-inside-other-languages.md
index 5c0bde02f96..61627c0b5a2 100644
--- a/src/doc/trpl/rust-inside-other-languages.md
+++ b/src/doc/trpl/rust-inside-other-languages.md
@@ -177,7 +177,8 @@ build  deps  examples  libembed.so  native
 
 That `libembed.so` is our ‘shared object’ library. We can use this file
 just like any shared object library written in C! As an aside, this may be
-`embed.dll` or `libembed.dylib`, depending on the platform.
+`embed.dll` (Microsoft Windows) or `libembed.dylib` (Mac OS X), depending on 
+your operating system.
 
 Now that we’ve got our Rust library built, let’s use it from our Ruby.