@@ -293,7 +293,7 @@ impl Layout {
293
293
/// Creates a layout describing the record for `self` followed by
294
294
/// `next` with no additional padding between the two. Since no
295
295
/// 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.
297
297
///
298
298
/// Returns `(k, offset)`, where `k` is layout of the concatenated
299
299
/// record and `offset` is the relative location, in bytes, of the
@@ -528,7 +528,7 @@ pub unsafe trait Alloc {
528
528
/// to allocate that block of memory.
529
529
unsafe fn dealloc ( & mut self , ptr : * mut u8 , layout : Layout ) ;
530
530
531
- /// Allocator-specific method for signalling an out-of-memory
531
+ /// Allocator-specific method for signaling an out-of-memory
532
532
/// condition.
533
533
///
534
534
/// `oom` aborts the thread or process, optionally performing
@@ -539,7 +539,7 @@ pub unsafe trait Alloc {
539
539
/// unsatisfied allocation request (signaled by an error such as
540
540
/// `AllocErr::Exhausted`), and wish to abandon computation rather
541
541
/// 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
543
543
/// may incorporate that error value into its diagnostic report
544
544
/// before aborting.
545
545
///
0 commit comments