From 629668847d6565eff41d4e12abce1e123b784301 Mon Sep 17 00:00:00 2001
From: Scott Anderson <scott@influxdata.com>
Date: Mon, 26 Aug 2019 09:35:13 -0600
Subject: [PATCH] added flux bytes type, resolves #392

---
 content/v2.0/reference/flux/language/types.md | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/content/v2.0/reference/flux/language/types.md b/content/v2.0/reference/flux/language/types.md
index 486140d6c..495e6450a 100644
--- a/content/v2.0/reference/flux/language/types.md
+++ b/content/v2.0/reference/flux/language/types.md
@@ -105,7 +105,12 @@ The string type is nullable.
 An empty string is **not** a _null_ value.
 {{% /note %}}
 
-The length of a string is its size in bytes, not the number of characters, since a single character may be multiple bytes.
+The length of a string is its size in bytes, not the number of characters,
+since a single character may be multiple bytes.
+
+### Bytes types
+A _bytes type_ represents a sequence of byte values.
+The bytes type name is `bytes`.
 
 ## Regular expression types
 A _regular expression type_ represents the set of all patterns for regular expressions.