From 4b61cca057f74764b6e6a6862dfaceb70689f95b Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Sat, 30 Mar 2013 11:22:59 +1100 Subject: [PATCH] Capitalise rustic type aliases --- src/vec2.rs | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/vec2.rs b/src/vec2.rs index c98f612..a850000 100644 --- a/src/vec2.rs +++ b/src/vec2.rs @@ -418,12 +418,12 @@ pub impl uvec2 { // Type aliases named in a more 'Rustic' style -pub type vec2i = Vec2; -pub type vec2i8 = Vec2; -pub type vec2i16 = Vec2; -pub type vec2i32 = Vec2; -pub type vec2i64 = Vec2; -pub type vec2f = Vec2; -pub type vec2f32 = Vec2; -pub type vec2f64 = Vec2; -pub type vec2b = Vec2; +pub type Vec2f = Vec2; +pub type Vec2f32 = Vec2; +pub type Vec2f64 = Vec2; +pub type Vec2i = Vec2; +pub type Vec2i8 = Vec2; +pub type Vec2i16 = Vec2; +pub type Vec2i32 = Vec2; +pub type Vec2i64 = Vec2; +pub type Vec2b = Vec2;