minor spelling corrections

This commit is contained in:
nsmryan 2018-09-30 10:37:08 -04:00 committed by Dimitri Sabadie
parent 24cd0d7fca
commit 0dcfe48415

View File

@ -83,11 +83,11 @@
//! - **[cgmath](https://crates.io/crates/cgmath) implementors.** //! - **[cgmath](https://crates.io/crates/cgmath) implementors.**
//! + Adds some usefull implementations of `Interpolate` for some cgmath types. //! + Adds some usefull implementations of `Interpolate` for some cgmath types.
//! + Enable with the `"impl-cgmath"` feature. //! + Enable with the `"impl-cgmath"` feature.
//! - **Standard library / no stdandard library.** //! - **Standard library / no standard library.**
//! + Its possible to compile against the standard library or go on your own without it. //! + Its possible to compile against the standard library or go on your own without it.
//! + Compiling with the standard library is enabled by default. //! + Compiling with the standard library is enabled by default.
//! + Use `defaut-features = []` in your `Cargo.toml` to disable. //! + Use `default-features = []` in your `Cargo.toml` to disable.
//! + Enable explicitly with the `"std"` feataure. //! + Enable explicitly with the `"std"` feature.
#![cfg_attr(not(feature = "std"), no_std)] #![cfg_attr(not(feature = "std"), no_std)]
#![cfg_attr(not(feature = "std"), feature(alloc))] #![cfg_attr(not(feature = "std"), feature(alloc))]