Skip to content

Commit

Permalink
Remove output trailing space
Browse files Browse the repository at this point in the history
  • Loading branch information
charlieegan3 committed Jun 3, 2024
1 parent 21c26dd commit 8dde331
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
3 changes: 0 additions & 3 deletions build/cheatsheet.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified build/cheatsheet.pdf
Binary file not shown.
3 changes: 0 additions & 3 deletions build/cheatsheet.tex

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func main() {
panic(err)
}

cheat.Output = string(cheatOutputBs)
cheat.Output = strings.TrimSpace(string(cheatOutputBs))
}

cheatTextPath := filepath.Join("cheats", sectionDir.Name(), cheatDir.Name(), "cheat.txt")
Expand Down

0 comments on commit 8dde331

Please sign in to comment.