Skip to content

Commit 3671366

Browse files
authored
fix: Fix typo in GetDestinationByName (#72)
1 parent 4b2d673 commit 3671366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specs/spec_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (s *SpecReader) GetSourceByName(name string) *Source {
6363
return nil
6464
}
6565

66-
func (s *SpecReader) GetDestinatinoByName(name string) *Destination {
66+
func (s *SpecReader) GetDestinationByName(name string) *Destination {
6767
for _, spec := range s.destinations {
6868
if spec.Name == name {
6969
return &spec

0 commit comments

Comments
 (0)