Change the sample in the readme to reflect the changes from the last commit
diff --git a/README.md b/README.md
index 7fc91eb..16f90db 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@
 
 void main() {
 	Vector3 x = new Vector3.zero(); // Zero vector
-	Vector4 y = new Vector4.splatter(4.0); // Vector with 4.0 in all lanes
+	Vector4 y = new Vector4.all(4.0); // Vector with 4.0 in all lanes
 	x.zyx = y.xzz; // Sets z,y,x the values in x,z,z
 }
 ```