Skip to content

Commit

Permalink
Fix cased description
Browse files Browse the repository at this point in the history
  • Loading branch information
MolotovCherry committed Apr 1, 2022
1 parent 3d47001 commit 9f1d4c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jekyll-paginate-v2/autopages/defaults.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module PaginateV2::AutoPages
'enabled' => false,
'slugify' => {
'mode' => 'none', # [raw default pretty ascii latin], none gives back the same string
'cased'=> false # If cased is true, all uppercase letters in the result string are replaced with their lowercase counterparts.
'cased'=> false # If cased is false, all uppercase letters in the result string are replaced with their lowercase counterparts.
}
},
'categories' => {
Expand All @@ -21,7 +21,7 @@ module PaginateV2::AutoPages
'enabled' => false,
'slugify' => {
'mode' => 'none', # [raw default pretty ascii latin], none gives back the same string
'cased'=> false # If cased is true, all uppercase letters in the result string are replaced with their lowercase counterparts.
'cased'=> false # If cased is false, all uppercase letters in the result string are replaced with their lowercase counterparts.
}
}
}
Expand Down

0 comments on commit 9f1d4c8

Please sign in to comment.