Skip to content

Commit

Permalink
refactor(misc): function comment
Browse files Browse the repository at this point in the history
  • Loading branch information
bouassaba committed Oct 26, 2024
1 parent f352d22 commit 87c8458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/infra/file_identifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ type GLTF struct {
} `json:"buffers"`
}

// IsGLTF Inspects a ZIP archive to see if it contains a glTF 2.0 structure.
// IsGLTF inspects a ZIP archive to see if it contains a glTF 2.0 structure.
func (fi *FileIdentifier) IsGLTF(path string) (bool, error) {
zipFile, err := zip.OpenReader(path)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion conversion/identifier/file_identifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ type GLTF struct {
} `json:"buffers"`
}

// IsGLTF Inspects a ZIP archive to see if it contains a glTF 2.0 structure.
// IsGLTF inspects a ZIP archive to see if it contains a glTF 2.0 structure.
func (fi *FileIdentifier) IsGLTF(path string) (bool, error) {
zipFile, err := zip.OpenReader(path)
if err != nil {
Expand Down

0 comments on commit 87c8458

Please sign in to comment.