diff --git a/docs/spec/04.00.00.conventions.md b/docs/spec/04.00.00.conventions.md
index d68b99e..43f72e7 100644
--- a/docs/spec/04.00.00.conventions.md
+++ b/docs/spec/04.00.00.conventions.md
@@ -5,7 +5,10 @@
* All Draco encoded mesh files are comprised of four main sections. This first
section is the header. The second section contains the metadata. This section is optional. The third section contains the connectivity data. The fourth section contains the attribute data.
-
+
+
+ Figure 1. Draco file format.
+
* The header must be decoded first, then the metadata section (if present), then the connectivity section, and then the attribute section.
@@ -14,32 +17,37 @@ section is the header. The second section contains the metadata. This section is
* The sequential connectivity is comprised of two sections. The first section is the connectivity header. The second section is the indices data.
-
-
+
+
+ Figure 2. Sequential connectivity format.
+
#### EdgeBreaker Connectivity
-* The EdgeBreaker connectivity section is composed of five sections. The first section is the connectivity header. The second section is the encoded EdgeBreaker symbol data. The third section is the encoded start face configuration data. The fourth section is the attribute connectivity data. The fifth section is the encoded split data.
-
-
-
-
-* The encoded split data must be decoded before the EdgeBreaker symbols are decoded. The offset to the split data is contained in the connectivity header.
+* The EdgeBreaker connectivity section is composed of five sections. The first section is the connectivity header. The second section is the encoded split data. The third section is the encoded EdgeBreaker symbol data. The fourth section is the encoded start face configuration data. The fifth section is the attribute connectivity data.
+
+
+ Figure 3. EdgeBreaker connectivity format.
+
#### Valence EdgeBreaker Connectivity
-* The valence EdgeBreaker connectivity inserts two sections in between the attribute connectivity data and the split data. The first section is the EdgeBreaker valence header. The second section is the context data for the valence prediction.
-
-
+* The valence EdgeBreaker connectivity adds two sections after the attribute connectivity data. The first aditional section is the EdgeBreaker valence header. The second aditional section is the context data for the valence prediction.
+
+
+ Figure 4. Valence EdgeBreaker connectivity format.
+
#### Attributes
* The attributes data contains two sections. The first section is the attribute header. The second section is comprised of one or more attribute types, such as positions, texture coordinates, normals… Each attribute type section is comprised of one or more unique attributes.
-
-
+
+
+ Figure 5. Attribute data format.
+
### Draco Conventions
diff --git a/docs/spec/edgebreaker.decoder.md b/docs/spec/edgebreaker.decoder.md
index 3670cdb..8e34d1d 100644
--- a/docs/spec/edgebreaker.decoder.md
+++ b/docs/spec/edgebreaker.decoder.md
@@ -40,13 +40,7 @@ void ParseTopologySplitEvents() {
~~~~~
void DecodeEdgebreakerConnectivityData() {
ParseEdgebreakerConnectivityData();
-
- // file pointer must be set to current position
- // + encoded_connectivity_size
DecodeTopologySplitEvents();
-
- // file pointer must be saved, as it points to the attribute data
- // file pointer must be set to old current position
EdgebreakerTraversalStart();
DecodeEdgeBreakerConnectivity();
}
diff --git a/docs/spec/images/edgebreaker_connectivity.png b/docs/spec/images/edgebreaker_connectivity.png
index 05fa795..af3fd8f 100755
Binary files a/docs/spec/images/edgebreaker_connectivity.png and b/docs/spec/images/edgebreaker_connectivity.png differ
diff --git a/docs/spec/images/edgebreaker_valence_connectivity.png b/docs/spec/images/edgebreaker_valence_connectivity.png
index 6e32805..e03cee9 100755
Binary files a/docs/spec/images/edgebreaker_valence_connectivity.png and b/docs/spec/images/edgebreaker_valence_connectivity.png differ
diff --git a/docs/spec/index.md b/docs/spec/index.md
index e4175ae..8e99c35 100644
--- a/docs/spec/index.md
+++ b/docs/spec/index.md
@@ -1,7 +1,7 @@
---
layout: spec-page
title: Draco Bitstream Specification
-version: Version 2,1
+version: Version 2,2 (pending)
version_date: Released 2017-10-02
---