@@ -293,7 +293,7 @@ impl Layout {
293293 /// Creates a layout describing the record for `self` followed by
294294 /// `next` with no additional padding between the two. Since no
295295 /// padding is inserted, the alignment of `next` is irrelevant,
296- /// and is not incoporated *at all* into the resulting layout.
296+ /// and is not incorporated *at all* into the resulting layout.
297297 ///
298298 /// Returns `(k, offset)`, where `k` is layout of the concatenated
299299 /// record and `offset` is the relative location, in bytes, of the
@@ -528,7 +528,7 @@ pub unsafe trait Alloc {
528528 /// to allocate that block of memory.
529529 unsafe fn dealloc ( & mut self , ptr : * mut u8 , layout : Layout ) ;
530530
531- /// Allocator-specific method for signalling an out-of-memory
531+ /// Allocator-specific method for signaling an out-of-memory
532532 /// condition.
533533 ///
534534 /// `oom` aborts the thread or process, optionally performing
@@ -539,7 +539,7 @@ pub unsafe trait Alloc {
539539 /// unsatisfied allocation request (signaled by an error such as
540540 /// `AllocErr::Exhausted`), and wish to abandon computation rather
541541 /// than attempt to recover locally. Such clients should pass the
542- /// signalling error value back into `oom`, where the allocator
542+ /// signaling error value back into `oom`, where the allocator
543543 /// may incorporate that error value into its diagnostic report
544544 /// before aborting.
545545 ///
0 commit comments