Skip to content

Commit b8bd5e7

Browse files
authored
Merge pull request #38 from donmendelson/master
Typo corrections: Issues #27 #33 #34
2 parents 191e3f8 + 68f5ea5 commit b8bd5e7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

v1-0-DRAFT_STANDARD/doc/02FieldEncoding.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1131,7 +1131,7 @@ Reference to type: This specification is equivalent to the one above.
11311131
Side field specification references the enumeration type
11321132

11331133
```xml
1134-
<field type="Side" name="SideEnum" id="54" />
1134+
<field name="Side" type="SideEnum" id="54" />
11351135
```
11361136

11371137
Wire format of Side "Buy" code as hexadecimal
@@ -1147,7 +1147,7 @@ name.
11471147
Example of a char field using a constant enum value
11481148

11491149
```xml
1150-
<enum name="PartyIDSourceEnum" primitiveType="char">
1150+
<enum name="PartyIDSourceEnum" encodingType="char">
11511151
<validValue name="BIC">B</validValue>
11521152
<validValue name="GeneralIdentifier">C</validValue>
11531153
<validValue name="Proprietary">D</validValue>

v1-0-DRAFT_STANDARD/doc/07Examples.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ groups or variable-length data.
1616
### Sample order message schema
1717

1818
```xml
19-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>`
19+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2020

2121
<sbe:messageSchema
22-
xmlns:sbe="http://fixprotocol.io/sbe/rc4"
23-
xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
22+
xmlns:sbe="http://fixprotocol.io/2016/sbe"
23+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2424
package="Examples" id="100"
2525
description="Test dictionary"
2626
byteOrder="littleEndian"
27-
xsi:schemaLocation="http://fixprotocol.io/sbe/rc4 SimpleBinary1-0.xsd">
27+
xsi:schemaLocation="http://fixprotocol.io/2016/sbe sbe.xsd">
28+
2829
<types>
2930
<type name="enumEncoding" primitiveType="char"/>
3031
<type name="idString" length="8" primitiveType="char" semanticType="String"/>

0 commit comments

Comments
 (0)