diff --git a/docs/spec/04.00.00.conventions.md b/docs/spec/04.00.00.conventions.md index 8f898ab..230bb66 100644 --- a/docs/spec/04.00.00.conventions.md +++ b/docs/spec/04.00.00.conventions.md @@ -19,7 +19,7 @@ section is the header. The second section contains the metadata. This section is #### 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 encoded split data.The fifth section is the attribute connectivity data. +* 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. ![edgebreaker_connectivity](images/edgebreaker_connectivity.png) @@ -29,7 +29,7 @@ section is the header. The second section contains the metadata. This section is #### Valence EdgeBreaker Connectivity -* The valence EdgeBreaker connectivity inserts two sections in between the start face 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 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. ![edgebreaker_valence_connectivity](images/edgebreaker_valence_connectivity.png) diff --git a/docs/spec/connectivity.decoder.md b/docs/spec/connectivity.decoder.md index f71ba30..433a32a 100644 --- a/docs/spec/connectivity.decoder.md +++ b/docs/spec/connectivity.decoder.md @@ -7,7 +7,7 @@ void DecodeConnectivityData() { if (encoder_method == MESH_SEQUENTIAL_ENCODING) DecodeSequentialConnectivityData(); - else + else if (encoder_method == MESH_EDGEBREAKER_ENCODING) DecodeEdgebreakerConnectivityData(); }