Fix typo and wording in README

"paramerise" -> "parameterize", and "more than useful" -> "more than enough" (which is better wording in the context I think).
This commit is contained in:
Dan Palmer 2016-05-02 23:45:29 +01:00
parent f23374111f
commit b0e07332b4

View file

@ -36,9 +36,9 @@ multiplication operator for Matrix * Vector, but not Vector * Matrix.
cgmath is _not_ an n-dimensional library and is aimed at computer graphics cgmath is _not_ an n-dimensional library and is aimed at computer graphics
applications rather than general linear algebra. It only offers the 2, 3, and applications rather than general linear algebra. It only offers the 2, 3, and
4 dimensional structures that are more than useful for most computer graphics 4 dimensional structures that are more than enough for most computer graphics
applications. This design decision was made in order to simplify the applications. This design decision was made in order to simplify the
implementation (Rust cannot paramerise over constants at compile time), and to implementation (Rust cannot parameterize over constants at compile time), and to
make dimension-specific optimisations easier in the future. make dimension-specific optimisations easier in the future.
## Contributing ## Contributing