2 Commits
v3.0 ... v3.1

Author SHA1 Message Date
529ac333ea make sure compile_commands.json doesn't end up in the repo 2025-02-27 12:45:48 -06:00
50aa5f157f typo :( 2025-02-27 12:45:40 -06:00
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.o
XD
compile_commands.json

2
XD.c
View File

@ -291,7 +291,7 @@ main(int argc, char *argv[])
/* change the nose depending on the current git repo's status */
if (has_staged(repo)) {
E("The're staged changes.")
E("They're staged changes.")
P("*"); /* change to broken nose for staged changes */
} else if (has_untracked(repo)) {
E("There are untracked changes in the repository.")