Fix for misspelled comments.

The spelling corrections were made in both documentation comments and
regular comments.
This commit is contained in:
Joseph Crail
2015-02-04 23:00:02 -05:00
parent ba2f13ef06
commit dc2e444e50
27 changed files with 36 additions and 36 deletions

View File

@@ -311,7 +311,7 @@ impl<T: Sync + Send> Drop for Arc<T> {
///
/// // stuff
///
/// drop(five); // explict drop
/// drop(five); // explicit drop
/// }
/// {
/// let five = Arc::new(5);
@@ -441,7 +441,7 @@ impl<T: Sync + Send> Drop for Weak<T> {
///
/// // stuff
///
/// drop(weak_five); // explict drop
/// drop(weak_five); // explicit drop
/// }
/// {
/// let five = Arc::new(5);