From 81fa51b417fbd058c3aefcc316d6d3ff3f1f1894 Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Sun, 2 Jun 2024 09:03:12 +0900 Subject: [PATCH] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a94f534..6991061 100644 --- a/README.md +++ b/README.md @@ -276,7 +276,7 @@ a destination it returns the type of the destination ```ts mat4.identity() // returns Float32Array mat4.identity(new Float32Array(16)); // returns Float32Array -mat4.identity(new Float64Array(16)); // returns Float32Array +mat4.identity(new Float64Array(16)); // returns Float64Array mat4.identity(new Array(16)); // returns number[] ```