Remove trailing whitespaces

This commit is contained in:
Aya Morisawa
2016-01-27 20:06:53 +09:00
parent d6c51c607b
commit 94e9eb1be4
12 changed files with 229 additions and 229 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ declare module "vec3" {
constructor(location: number[]);
constructor(location: {x: number; y: number; z: number});
constructor(locationStr: string);
set(x: number, y: number, z: number): Vec3;
update(other: Vec3): Vec3;
floored(): Vec3;
@@ -31,4 +31,4 @@ declare module "vec3" {
min(other: Vec3): Vec3;
max(other: Vec3): Vec3;
}
}
}