Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Milosevic <iva@blokovi.com>
  • Loading branch information
blokovi committed Oct 6, 2021
1 parent 9b31fb9 commit 092ea0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consumers/notifiers/smpp/notifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
var _ notifiers.Notifier = (*notifier)(nil)

type notifier struct {
transmiter *smpp.Transmitter
transmitter *smpp.Transmitter
tranformer transformers.Transformer
sourceAddrTON uint8
sourceAddrNPI uint8
Expand All @@ -37,7 +37,7 @@ func New(cfg Config) notifiers.Notifier {
}
t.Bind()
ret := &notifier{
transmiter: t,
transmitter: t,
tranformer: json.New(),
sourceAddrTON: cfg.SourceAddrTON,
destAddrTON: cfg.DestAddrTON,
Expand All @@ -59,7 +59,7 @@ func (n *notifier) Notify(from string, to []string, msg messaging.Message) error
Text: pdutext.Raw(msg.Payload),
Register: pdufield.NoDeliveryReceipt,
}
_, err := n.transmiter.Submit(send)
_, err := n.transmitter.Submit(send)
if err != nil {
return err
}
Expand Down

0 comments on commit 092ea0a

Please sign in to comment.