Clean up some copy in the limit_posts error handling.

This commit is contained in:
Parker Moore 2013-05-04 14:57:27 +02:00
parent 1c4f5b4ee5
commit 67aaada839
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ module Jekyll
self.tags = Hash.new { |hash, key| hash[key] = [] }
if self.limit_posts < 0
raise ArgumentError, "limit_posts must not be a negative number"
raise ArgumentError, "limit_posts must be a non-negative number"
end
end