about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2014-05-04 14:16:08 -0700
committerRicho Healey <richo@psych0tik.net>2014-05-04 14:17:47 -0700
commit6201d6d0d94999d5e569f1d942920c2295e5682a (patch)
tree0cffc0aeacbfb2a201b54e6c6c2fd76a7de00b21
parent59569397fbcd0a9b7b3649cd9957cace2d6889d8 (diff)
downloadrust-6201d6d0d94999d5e569f1d942920c2295e5682a.tar.gz
rust-6201d6d0d94999d5e569f1d942920c2295e5682a.zip
docs: change compositionality to composability
-rw-r--r--src/doc/intro.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/intro.md b/src/doc/intro.md
index 5b36856660d..94cbc8e0e0a 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,