about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorFelix Raimundo <felix.raimundo@telecom-paristech.fr>2014-09-05 02:01:56 +0200
committerFelix Raimundo <felix.raimundo@telecom-paristech.fr>2014-09-05 02:03:26 +0200
commitd0f1c7dfb0f001262428950da7aab925ecffb9df (patch)
tree27f6cda5eeef1a9514b1b7ab42e3816f83068452 /src/libcore
parente024017f60c93b6ff4f37bd4bd580f30deafb107 (diff)
Update language item from 'share' to 'sync' #16988
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/kinds.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/kinds.rs b/src/libcore/kinds.rs
index 9d64a25149f..0a1334e5d13 100644
--- a/src/libcore/kinds.rs
+++ b/src/libcore/kinds.rs
@@ -271,7 +271,7 @@ pub mod marker {
     /// A type which is considered "not sync", meaning that
     /// its contents are not threadsafe, hence they cannot be
     /// shared between tasks.
-    #[lang="no_share_bound"]
+    #[lang="no_sync_bound"]
     #[deriving(PartialEq,Clone)]
     pub struct NoSync;