1
Fork 0

Update gitignore, fix typo

This commit is contained in:
Alex Yatskov 2020-05-25 17:44:19 -07:00
parent 5893615589
commit 1b121f1b90
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
*.mpq
.ccls-cache
asset
imgui.ini
*.mpq

View File

@ -44,7 +44,7 @@ func FileMountArchive(mountPath, archivePath string) error {
func FileUnmountArchive(mountPath string) error {
archive, ok := fileState.mountPoints[mountPath]
if !ok {
return errors.New("file archive is nout mounted")
return errors.New("file archive is not mounted")
}
var paths []string