Replace hard tabs with whitespaces

pull/244/head
Yuki Okushi 4 years ago
parent 0cfd181886
commit ee0d4be726

@ -3,58 +3,58 @@
[Introduction](README.md) [Introduction](README.md)
* [Meet Safe and Unsafe](meet-safe-and-unsafe.md) * [Meet Safe and Unsafe](meet-safe-and-unsafe.md)
* [How Safe and Unsafe Interact](safe-unsafe-meaning.md) * [How Safe and Unsafe Interact](safe-unsafe-meaning.md)
* [What Unsafe Can Do](what-unsafe-does.md) * [What Unsafe Can Do](what-unsafe-does.md)
* [Working with Unsafe](working-with-unsafe.md) * [Working with Unsafe](working-with-unsafe.md)
* [Data Layout](data.md) * [Data Layout](data.md)
* [repr(Rust)](repr-rust.md) * [repr(Rust)](repr-rust.md)
* [Exotically Sized Types](exotic-sizes.md) * [Exotically Sized Types](exotic-sizes.md)
* [Other reprs](other-reprs.md) * [Other reprs](other-reprs.md)
* [Ownership](ownership.md) * [Ownership](ownership.md)
* [References](references.md) * [References](references.md)
* [Aliasing](aliasing.md) * [Aliasing](aliasing.md)
* [Lifetimes](lifetimes.md) * [Lifetimes](lifetimes.md)
* [Limits of Lifetimes](lifetime-mismatch.md) * [Limits of Lifetimes](lifetime-mismatch.md)
* [Lifetime Elision](lifetime-elision.md) * [Lifetime Elision](lifetime-elision.md)
* [Unbounded Lifetimes](unbounded-lifetimes.md) * [Unbounded Lifetimes](unbounded-lifetimes.md)
* [Higher-Rank Trait Bounds](hrtb.md) * [Higher-Rank Trait Bounds](hrtb.md)
* [Subtyping and Variance](subtyping.md) * [Subtyping and Variance](subtyping.md)
* [Drop Check](dropck.md) * [Drop Check](dropck.md)
* [PhantomData](phantom-data.md) * [PhantomData](phantom-data.md)
* [Splitting Borrows](borrow-splitting.md) * [Splitting Borrows](borrow-splitting.md)
* [Type Conversions](conversions.md) * [Type Conversions](conversions.md)
* [Coercions](coercions.md) * [Coercions](coercions.md)
* [The Dot Operator](dot-operator.md) * [The Dot Operator](dot-operator.md)
* [Casts](casts.md) * [Casts](casts.md)
* [Transmutes](transmutes.md) * [Transmutes](transmutes.md)
* [Uninitialized Memory](uninitialized.md) * [Uninitialized Memory](uninitialized.md)
* [Checked](checked-uninit.md) * [Checked](checked-uninit.md)
* [Drop Flags](drop-flags.md) * [Drop Flags](drop-flags.md)
* [Unchecked](unchecked-uninit.md) * [Unchecked](unchecked-uninit.md)
* [Ownership Based Resource Management](obrm.md) * [Ownership Based Resource Management](obrm.md)
* [Constructors](constructors.md) * [Constructors](constructors.md)
* [Destructors](destructors.md) * [Destructors](destructors.md)
* [Leaking](leaking.md) * [Leaking](leaking.md)
* [Unwinding](unwinding.md) * [Unwinding](unwinding.md)
* [Exception Safety](exception-safety.md) * [Exception Safety](exception-safety.md)
* [Poisoning](poisoning.md) * [Poisoning](poisoning.md)
* [Concurrency](concurrency.md) * [Concurrency](concurrency.md)
* [Races](races.md) * [Races](races.md)
* [Send and Sync](send-and-sync.md) * [Send and Sync](send-and-sync.md)
* [Atomics](atomics.md) * [Atomics](atomics.md)
* [Implementing Vec](vec.md) * [Implementing Vec](vec.md)
* [Layout](vec-layout.md) * [Layout](vec-layout.md)
* [Allocating](vec-alloc.md) * [Allocating](vec-alloc.md)
* [Push and Pop](vec-push-pop.md) * [Push and Pop](vec-push-pop.md)
* [Deallocating](vec-dealloc.md) * [Deallocating](vec-dealloc.md)
* [Deref](vec-deref.md) * [Deref](vec-deref.md)
* [Insert and Remove](vec-insert-remove.md) * [Insert and Remove](vec-insert-remove.md)
* [IntoIter](vec-into-iter.md) * [IntoIter](vec-into-iter.md)
* [RawVec](vec-raw.md) * [RawVec](vec-raw.md)
* [Drain](vec-drain.md) * [Drain](vec-drain.md)
* [Handling Zero-Sized Types](vec-zsts.md) * [Handling Zero-Sized Types](vec-zsts.md)
* [Final Code](vec-final.md) * [Final Code](vec-final.md)
* [Implementing Arc and Mutex](arc-and-mutex.md) * [Implementing Arc and Mutex](arc-and-mutex.md)
* [FFI](ffi.md) * [FFI](ffi.md)
* [Beneath `std`](beneath-std.md) * [Beneath `std`](beneath-std.md)
* [#[panic_handler]](panic-handler.md) * [#[panic_handler]](panic-handler.md)

Loading…
Cancel
Save