Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation comment for Jekyll::Converters::Identity #7883

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/jekyll/converters/identity.rb
Expand Up @@ -2,7 +2,7 @@

module Jekyll
module Converters
# Identify converter. Returns same content as given.
# Identity converter. Returns same content as given.
# For more info on converters see https://jekyllrb.com/docs/plugins/converters/
class Identity < Converter
safe true
Expand All @@ -12,7 +12,7 @@ class Identity < Converter
# Public: Does the given extension match this converter's list of acceptable extensions?
# Takes one argument: the file's extension (including the dot).
#
# ext - The String extension to check (not relevant here)
# _ext - The String extension to check (not relevant here)
#
# Returns true since it always matches.
def matches(_ext)
Expand Down