about summary refs log tree commit diff
path: root/doc/tutorial.md
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-12-06 02:13:49 -0500
committerCorey Richardson <corey@octayn.net>2013-12-10 07:28:24 -0500
commit8ae340a026b734b390400655f7c155e553f720ff (patch)
tree1a6f6b20f35e7ff234725390d01b811f2ac1d00a /doc/tutorial.md
parent61e8268645b13dfe507827b85414e60960670916 (diff)
downloadrust-8ae340a026b734b390400655f7c155e553f720ff.tar.gz
rust-8ae340a026b734b390400655f7c155e553f720ff.zip
Note that Rust can be embedded.
Diffstat (limited to 'doc/tutorial.md')
-rw-r--r--doc/tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tutorial.md b/doc/tutorial.md
index 683121729c8..4553588a267 100644
--- a/doc/tutorial.md
+++ b/doc/tutorial.md
@@ -149,7 +149,7 @@ and functions defined in it. If it has a `main` function, it can be
 compiled to an executable. Rust does not allow code that's not a
 declaration to appear at the top level of the file: all statements must
 live inside a function.  Rust programs can also be compiled as
-libraries, and included in other programs.
+libraries, and included in other programs, even ones not written in Rust.
 
 ## Editing Rust code