diff --git a/lib/gitlab/markdown.rb b/lib/gitlab/markdown.rb
index 889decc9b485e6255ecda2f23afe6814f4ce1f4e..9f6e19a09fde5e30e342963b68ccb14d0f7f8681 100644
--- a/lib/gitlab/markdown.rb
+++ b/lib/gitlab/markdown.rb
@@ -22,24 +22,14 @@ module Gitlab
     autoload :TaskListFilter,               'gitlab/markdown/task_list_filter'
     autoload :UserReferenceFilter,          'gitlab/markdown/user_reference_filter'
 
-    # Public: Parse the provided text with GitLab-Flavored Markdown
-    #
-    # text         - the source text
-    # options      - options
-    # html_options - extra options for the reference links as given to link_to
-    def gfm(text, options = {}, html_options = {})
-      gfm_with_options(text, options, html_options)
-    end
-
     # Public: Parse the provided text with GitLab-Flavored Markdown
     #
     # text         - the source text
     # options      - A Hash of options used to customize output (default: {}):
     #                :xhtml               - output XHTML instead of HTML
     #                :reference_only_path - Use relative path for reference links
-    # project      - the project
     # html_options - extra options for the reference links as given to link_to
-    def gfm_with_options(text, options = {}, html_options = {})
+    def gfm(text, options = {}, html_options = {})
       return text if text.nil?
 
       # Duplicate the string so we don't alter the original, then call to_str
diff --git a/lib/redcarpet/render/gitlab_html.rb b/lib/redcarpet/render/gitlab_html.rb
index 04440e4f68d2a5940ea2999e485bc45786d49134..f57b56cbdf005a3ea9ca1986ae04aad03eb9e499 100644
--- a/lib/redcarpet/render/gitlab_html.rb
+++ b/lib/redcarpet/render/gitlab_html.rb
@@ -41,6 +41,6 @@ class Redcarpet::Render::GitlabHTML < Redcarpet::Render::HTML
   end
 
   def postprocess(full_document)
-    h.gfm_with_options(full_document, @options)
+    h.gfm(full_document, @options)
   end
 end
diff --git a/spec/features/markdown_spec.rb b/spec/features/markdown_spec.rb
index 859a62f740f5ea46dbeaadee21250dc361953708..3da4dfc2b23d6aaf683db4d73f00c3db8fd34c5a 100644
--- a/spec/features/markdown_spec.rb
+++ b/spec/features/markdown_spec.rb
@@ -15,7 +15,7 @@ require 'erb'
 #   -> `markdown` helper
 #     -> Redcarpet::Render::GitlabHTML converts Markdown to HTML
 #       -> Post-process HTML
-#         -> `gfm_with_options` helper
+#         -> `gfm` helper
 #           -> HTML::Pipeline
 #             -> SanitizationFilter
 #             -> Other filters, depending on pipeline
@@ -179,7 +179,7 @@ describe 'GitLab Markdown', feature: true do
     before(:all) do
       @feat = MarkdownFeature.new
 
-      # `gfm_with_options` depends on a `@project` variable
+      # `gfm` helper depends on a `@project` variable
       @project = @feat.project
 
       @html = markdown(@feat.raw_markdown)