From 5e4285ae6fce031848c24ed92d49abd0dbcf3cd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 6 Oct 2013 19:20:39 +0200 Subject: [PATCH] Fix typos on the readme. --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 733fcaea..1b5ca22f 100644 --- a/README.md +++ b/README.md @@ -36,14 +36,15 @@ prefix. **nalgebra** is meant to be a general-purpose linear algebra library (but is very far from that…), and keeps an optimized set of tools for computational graphics and physics. Those features include: -* Vectors with static sizes: `Vec0`, `Vec1`, `Vec2`, ..., `Vec6`. -* Square matrices with static sizes: `Mat1`, `Mat2`, ..., `Mat6 `. +* Vectors with static sizes: `Vec0`, `Vec1`, `Vec2`, `Vec3`, `Vec4`, `Vec5`, `Vec6`. +* Square matrices with static sizes: `Mat1`, `Mat2`, `Mat3`, `Mat4`, `Mat5`, `Mat6 `. * Rotation matrices: `Rot2`, `Rot3`, `Rot4`. * Isometries: `Iso2`, `Iso3`, `Iso4`. * Dynamically sized vector: `DVec`. * Dynamically sized (square or rectangular) matrix: `DMat`. * A few methods for data analysis: `Cov`, `Mean`. -* Operator overloading using the double trait dispatch [trick](http://smallcultfollowing.com/babysteps/blog/2012/10/04/refining-traits-slash-impls/). For example, the following work: +* Almost one trait per functionality: useful for generic programming. +* Operator overloading using the double trait dispatch [trick](http://smallcultfollowing.com/babysteps/blog/2012/10/04/refining-traits-slash-impls/). For example, the following works: ```rust extern mod nalgebra; @@ -60,8 +61,6 @@ fn main() { } ``` -* Almost one trait per functionality: useful for generic programming. - ## Compilation You will need the last rust compiler from the master branch. If you encounter problems, make sure you have the last version before creating an issue.