about summary refs log tree commit diff
path: root/src/libsyntax/ast.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-06-05 17:56:24 -0700
committerCorey Richardson <corey@octayn.net>2013-06-28 10:44:15 -0400
commit1c0aa7848103b5018473df851bc115d3e5585185 (patch)
tree008b749cd796b898a858a799aedce688dd85424d /src/libsyntax/ast.rs
parent1eec3bba13fef50324d1a7542713b3189a627547 (diff)
downloadrust-1c0aa7848103b5018473df851bc115d3e5585185.tar.gz
rust-1c0aa7848103b5018473df851bc115d3e5585185.zip
librustc: Change "Owned" to "Send" everywhere
Diffstat (limited to 'src/libsyntax/ast.rs')
-rw-r--r--src/libsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index a9b0c3986f8..265e9e444e9 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -147,7 +147,7 @@ pub static crate_node_id: node_id = 0;
 // The AST represents all type param bounds as types.
 // typeck::collect::compute_bounds matches these against
 // the "special" built-in traits (see middle::lang_items) and
-// detects Copy, Send, Owned, and Freeze.
+// detects Copy, Send, Send, and Freeze.
 pub enum TyParamBound {
     TraitTyParamBound(@trait_ref),
     RegionTyParamBound