From 3cdc0f104ee375a669d1a322da877df64255976b Mon Sep 17 00:00:00 2001 From: data-man Date: Thu, 16 Jul 2020 10:26:43 +0500 Subject: [PATCH] Vectors clarification in docs --- doc/langref.html.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/langref.html.in b/doc/langref.html.in index f4320df1b5..6180ab592f 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -1950,7 +1950,7 @@ test "null terminated array" { {#header_open|Vectors#}

- A vector is a group of {#link|Integers#}, {#link|Floats#}, or {#link|Pointers#} which are operated on + A vector is a group of booleans, {#link|Integers#}, {#link|Floats#}, or {#link|Pointers#} which are operated on in parallel using a single instruction ({#link|SIMD#}). Vector types are created with the builtin function {#link|@Type#}, or using the shorthand as {#syntax#}std.meta.Vector{#endsyntax#}.