diff --git a/doc/doctrees/environment.pickle b/doc/doctrees/environment.pickle
index aab709c..4b69e2b 100644
Binary files a/doc/doctrees/environment.pickle and b/doc/doctrees/environment.pickle differ
diff --git a/doc/html/api/dyaml.dumper.html b/doc/html/api/dyaml.dumper.html
index 8113df9..df7a3a2 100644
--- a/doc/html/api/dyaml.dumper.html
+++ b/doc/html/api/dyaml.dumper.html
@@ -105,6 +105,11 @@
Construct a Dumper writing to a stream. This is useful to e.g. write to memory.
+
+@property void name(string name);
+
+Set stream name. Used in debugging messages.
+
void resolver(Resolver resolver);
diff --git a/doc/html/api/dyaml.exception.html b/doc/html/api/dyaml.exception.html
index dfaf5b7..997ada1 100644
--- a/doc/html/api/dyaml.exception.html
+++ b/doc/html/api/dyaml.exception.html
@@ -47,7 +47,7 @@
- this(string msg, string file = __FILE__, int line = __LINE__);
-Construct a YAMLException with specified message, and position where it was thrown.
+Construct a YAMLException with specified message and position where it was thrown.
diff --git a/doc/html/api/dyaml.loader.html b/doc/html/api/dyaml.loader.html
index 8be8ea2..572ea04 100644
--- a/doc/html/api/dyaml.loader.html
+++ b/doc/html/api/dyaml.loader.html
@@ -104,7 +104,7 @@
Parameters:string filename |
Name of the file to load from. |
-Throws:YAMLException if the file could not be opened or read from.
+Throws:YAMLException if the file could not be opened or read.
this(Stream stream);
@@ -114,7 +114,7 @@
Parameters:Stream stream |
Stream to read from. Must be readable. |
-Throws:YAMLException if stream could not be read from.
+Throws:YAMLException if stream could not be read.
@property void name(string name);
@@ -136,7 +136,7 @@
Load single YAML document.
-If none or more than one YAML document is found, this will throw a YAMLException.
+
If none or more than one YAML document is found, this throws a YAMLException.
Returns:Root node of the document.
@@ -153,7 +153,7 @@
Returns:Array of root nodes of all documents in the file/stream.
-
Throws:YAMLException on a YAML parsing error.
+
Throws:YAMLException on a parsing error.
int opApply(int delegate(ref Node) dg);
diff --git a/doc/html/api/dyaml.representer.html b/doc/html/api/dyaml.representer.html
index ec00226..bed446e 100644
--- a/doc/html/api/dyaml.representer.html
+++ b/doc/html/api/dyaml.representer.html
@@ -69,13 +69,13 @@
Add a function to represent nodes with a specific data type.
-The representer function takes a reference to a Node storing the data
+
The representer function takes references to a Node storing the data
type and to the Representer. It returns the represented node and may
throw a RepresenterException. See the example for more information.
Only one function may be specified for one data type. Default data
- types already have representer functions unless disabled in these
+ types already have representer functions unless disabled in the
Representer constructor.
diff --git a/doc/html/articles/spec_differences.html b/doc/html/articles/spec_differences.html
index dd6c7fb..735a400 100644
--- a/doc/html/articles/spec_differences.html
+++ b/doc/html/articles/spec_differences.html
@@ -138,7 +138,7 @@ struct appears in Phobos.