Skip to content

Commit b88d26b

Browse files
author
Isaac Andrade
committed
Regenerate fix types.
- This is a follow-up of last commit where a typo was fixed in the _gen/generate-messages subprogram.
1 parent 2c7a81f commit b88d26b

File tree

575 files changed

+575
-575
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

575 files changed

+575
-575
lines changed

fix40/advertisement/Advertisement.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
5151
//A RouteOut is the callback type that should be implemented for routing Message
5252
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
5353

54-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
54+
//Route returns the beginstring, message type, and MessageRoute for this Message type
5555
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
5656
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
5757
m := new(Message)

fix40/allocation/Allocation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
133133
//A RouteOut is the callback type that should be implemented for routing Message
134134
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
135135

136-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
136+
//Route returns the beginstring, message type, and MessageRoute for this Message type
137137
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
138138
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
139139
m := new(Message)

fix40/allocationack/AllocationACK.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
3737
//A RouteOut is the callback type that should be implemented for routing Message
3838
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
3939

40-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
40+
//Route returns the beginstring, message type, and MessageRoute for this Message type
4141
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
4242
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
4343
m := new(Message)

fix40/dontknowtrade/DontKnowTrade.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
3838
//A RouteOut is the callback type that should be implemented for routing Message
3939
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
4040

41-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
41+
//Route returns the beginstring, message type, and MessageRoute for this Message type
4242
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
4343
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
4444
m := new(Message)

fix40/email/Email.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
3939
//A RouteOut is the callback type that should be implemented for routing Message
4040
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
4141

42-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
42+
//Route returns the beginstring, message type, and MessageRoute for this Message type
4343
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
4444
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
4545
m := new(Message)

fix40/executionreport/ExecutionReport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
121121
//A RouteOut is the callback type that should be implemented for routing Message
122122
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
123123

124-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
124+
//Route returns the beginstring, message type, and MessageRoute for this Message type
125125
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
126126
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
127127
m := new(Message)

fix40/heartbeat/Heartbeat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
2222
//A RouteOut is the callback type that should be implemented for routing Message
2323
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
2424

25-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
25+
//Route returns the beginstring, message type, and MessageRoute for this Message type
2626
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
2727
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
2828
m := new(Message)

fix40/indicationofinterest/IndicationofInterest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
5959
//A RouteOut is the callback type that should be implemented for routing Message
6060
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
6161

62-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
62+
//Route returns the beginstring, message type, and MessageRoute for this Message type
6363
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
6464
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
6565
m := new(Message)

fix40/listcancelrequest/ListCancelRequest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
2626
//A RouteOut is the callback type that should be implemented for routing Message
2727
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
2828

29-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
29+
//Route returns the beginstring, message type, and MessageRoute for this Message type
3030
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
3131
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
3232
m := new(Message)

fix40/listexecute/ListExecute.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func (m Message) Marshal() quickfix.Message { return quickfix.Marshal(m) }
2626
//A RouteOut is the callback type that should be implemented for routing Message
2727
type RouteOut func(msg Message, sessionID quickfix.SessionID) quickfix.MessageRejectError
2828

29-
//Route returns the beginstring, message type, and MessageRoute for this Mesage type
29+
//Route returns the beginstring, message type, and MessageRoute for this Message type
3030
func Route(router RouteOut) (string, string, quickfix.MessageRoute) {
3131
r := func(msg quickfix.Message, sessionID quickfix.SessionID) quickfix.MessageRejectError {
3232
m := new(Message)

0 commit comments

Comments
 (0)