Skip to content

Commit 497e78d

Browse files
committed
fix typo 2
1 parent 5f080f2 commit 497e78d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

trainings/files/read.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package files
22

33
import (
44
"os"
5-
"path"
65
"path/filepath"
76

87
"github.com/pkg/errors"
@@ -72,7 +71,7 @@ func isSolutionFile(info os.FileInfo) bool {
7271
if info.Name() == "go.work" {
7372
return true
7473
}
75-
if path.Ext(info.Name()) == ".sql" {
74+
if filepath.Ext(info.Name()) == ".sql" {
7675
return true
7776
}
7877

0 commit comments

Comments
 (0)