diff --git a/doc/Glossary-Concise.txt b/doc/Glossary-Concise.txt
index 601528b..1eb3461 100644
--- a/doc/Glossary-Concise.txt
+++ b/doc/Glossary-Concise.txt
@@ -311,7 +311,7 @@ a:th D: an-b A: - F: -
Return the actual address of the `n`th item in the array.
a:to-string D: a-s A: - F: -
-Create a new string from the provided array. This string will be stored in the temporal string buffers.
+Create a new string from the provided array of character values. This string will be stored in the temporal string buffers.
abort D: - A: - F: -
Abort execution.
diff --git a/doc/Glossary.html b/doc/Glossary.html
index 50e4729..ef8dfef 100644
--- a/doc/Glossary.html
+++ b/doc/Glossary.html
@@ -766,8 +766,12 @@
Addr: -
Float: -
Create a new string from the provided array. This string will be stored in the temporal string buffers.
-Class: | class:word |
Namespace: | a |
Interface Layer: | all |
Create a new string from the provided array of character values. This string will be stored in the temporal string buffers.
+Class: | class:word |
Namespace: | a |
Interface Layer: | all |
Example:
+
+
Data: -
Addr: -
diff --git a/doc/Glossary.txt b/doc/Glossary.txt
index e7767cc..9271f98 100644
--- a/doc/Glossary.txt
+++ b/doc/Glossary.txt
@@ -1191,9 +1191,14 @@ a:to-string
Addr: -
Float: -
-Create a new string from the provided array. This string will be stored in the temporal string buffers.
+Create a new string from the provided array of character values. This string will be stored in the temporal string buffers.
Class: class:word | Namespace: a | Interface Layer: all
+
+Example #1:
+
+ { $h $e $l $l $o } a:to-string s:put nl
+
------------------------------------------------------------------------
abort
diff --git a/doc/words.tsv b/doc/words.tsv
index 260bd33..5018ef0 100644
--- a/doc/words.tsv
+++ b/doc/words.tsv
@@ -102,7 +102,7 @@ a:reverse a-b - - Reverse the order of items in a array. This will return a new
a:right an-a - - Return a new array containing the specified number of values from the right side of the array. class:word {n/a} {n/a} a all
a:store vna- - - Store a value into the array at the specified index. class:word #3 { #0 #1 #2 } #1 a:store {n/a} a all
a:th an-b - - Return the actual address of the `n`th item in the array. class:word {n/a} {n/a} a all
-a:to-string a-s - - Create a new string from the provided array. This string will be stored in the temporal string buffers. class:word {n/a} {n/a} a all
+a:to-string a-s - - Create a new string from the provided array of character values. This string will be stored in the temporal string buffers. class:word { $h $e $l $l $o } a:to-string s:put nl {n/a} a all
abort - - - Abort execution. class:macro {n/a} {n/a} global rre
again - - - Close an unconditional loop. Branches back to the prior `repeat`. class:macro {n/a} {n/a} global all
allot n- - - Allocate the specified number of cells from the `Heap`. class:word 'Buffer d:create #100 allot {n/a} global all