Strip trailing whitespace in code

This commit is contained in:
Anthony Fok 2015-08-04 11:59:32 -06:00
parent f2ab0b2608
commit b0416e9bef
2 changed files with 4 additions and 4 deletions

View file

@ -1593,9 +1593,9 @@ func (s *Site) futureStats() string {
switch s.futureCount {
case 0:
return "0 future content "
return "0 future content"
case 1:
msg = "1 future rendered "
msg = "1 future rendered"
default:
msg = fmt.Sprintf("%d future rendered", s.draftCount)
}