From 1b121f1b90208c15870921dd0e6183c58f81ae06 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Mon, 25 May 2020 17:44:19 -0700 Subject: [PATCH] Update gitignore, fix typo --- .gitignore | 3 ++- platform/file.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 3299034..d346d33 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +*.mpq +.ccls-cache asset imgui.ini -*.mpq diff --git a/platform/file.go b/platform/file.go index 2b375a2..2b8f322 100644 --- a/platform/file.go +++ b/platform/file.go @@ -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