Fixed typos
This commit is contained in:
parent
410e5912a2
commit
29b3dc97f0
|
@ -3,8 +3,8 @@
|
|||
module Jekyll
|
||||
class Configuration < Hash
|
||||
|
||||
# Default options. Overriden by values in _config.yml.
|
||||
# Strings rather than symbols are used for compatability with YAML.
|
||||
# Default options. Overridden by values in _config.yml.
|
||||
# Strings rather than symbols are used for compatibility with YAML.
|
||||
DEFAULTS = {
|
||||
'source' => Dir.pwd,
|
||||
'destination' => File.join(Dir.pwd, '_site'),
|
||||
|
|
|
@ -535,7 +535,7 @@ class TestPost < Test::Unit::TestCase
|
|||
assert conv.kind_of? Jekyll::Converters::Markdown
|
||||
end
|
||||
|
||||
should "process .text as indentity under default configuration" do
|
||||
should "process .text as identity under default configuration" do
|
||||
post = setup_post '2011-04-12-text-extension.text'
|
||||
conv = post.converter
|
||||
assert conv.kind_of? Jekyll::Converters::Identity
|
||||
|
|
Loading…
Reference in New Issue