From 778529b13e8196e6f719a899f329e6bda41f9a55 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 15 Jul 2014 20:08:37 +0200 Subject: [PATCH 1/3] obsolete.rs: fix typo in message --- src/libsyntax/parse/obsolete.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/parse/obsolete.rs b/src/libsyntax/parse/obsolete.rs index cadae7ef12f80..ba401d313d87f 100644 --- a/src/libsyntax/parse/obsolete.rs +++ b/src/libsyntax/parse/obsolete.rs @@ -76,7 +76,7 @@ impl<'a> ParserObsoleteMethods for parser::Parser<'a> { ), ObsoleteManagedExpr => ( "`@` notation for a managed pointer allocation", - "use the `box(GC)` oeprator instead of `@`" + "use the `box(GC)` operator instead of `@`" ), }; From be1fe29ec4eb4128ee56e419b3766ab3b303b9bc Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 15 Jul 2014 20:20:08 +0200 Subject: [PATCH 2/3] rustc.1: fix typo Uses the same wording as ``config.rs`` now. --- man/rustc.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man/rustc.1 b/man/rustc.1 index f49faf2ec6e3a..00d698e611e34 100644 --- a/man/rustc.1 +++ b/man/rustc.1 @@ -68,7 +68,7 @@ AST nodes and blocks with IDs), or flowgraph= (graphviz formatted flowgraph for node) .TP \fB\-\-dep-info\fR [FILENAME] -Output dependency info to after compiling, in o format suitable +Output dependency info to after compiling, in a format suitable for use by Makefiles. .TP \fB\-\-sysroot\fR PATH From a1def0856ed8c658a4985f405b1ec04eb85c4786 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 15 Jul 2014 23:59:13 +0200 Subject: [PATCH 3/3] complement-lang-faq.md: fix typos --- src/doc/complement-lang-faq.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/complement-lang-faq.md b/src/doc/complement-lang-faq.md index ae58db9077cab..ce037251e46b4 100644 --- a/src/doc/complement-lang-faq.md +++ b/src/doc/complement-lang-faq.md @@ -31,7 +31,7 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page. ## Does it run on Windows? -Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depends on libgcc DLL at runtime][libgcc]. +Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all executables created by rustc [depend on libgcc DLL at runtime][libgcc]. [win64]: https://github.com/rust-lang/rust/issues/1237 [libgcc]: https://github.com/rust-lang/rust/issues/11782 @@ -68,7 +68,7 @@ Cleanup through RAII-style destructors is more likely to work than in catch bloc ## Why aren't modules type-parametric? -We want to maintain the option to parametrize at runtime. We may make eventually change this limitation, but initially this is how type parameters were implemented. +We want to maintain the option to parametrize at runtime. We may eventually change this limitation, but initially this is how type parameters were implemented. ## Why aren't values type-parametric? Why only items?