From 6201d6d0d94999d5e569f1d942920c2295e5682a Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Sun, 4 May 2014 14:16:08 -0700 Subject: [PATCH] docs: change compositionality to composability --- src/doc/intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/intro.md b/src/doc/intro.md index 5b36856660dae..94cbc8e0e0ac3 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -370,7 +370,7 @@ fn main() { ``` This example is starting to get more subtle, -but it hints at the powerful compositionality of Rust's concurrent types. +but it hints at the powerful composability of Rust's concurrent types. This time we've put our array of numbers inside a `Mutex` and then put *that* inside the `Arc`. Like immutable data, `Mutex`es are sharable,