Skip to content

Commit abe0e26

Browse files
committed
style: add period to documentation comment for module_page function in EPUB templates
1 parent c1970a7 commit abe0e26

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/ex_doc/formatter/epub/templates.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defmodule ExDoc.Formatter.EPUB.Templates do
1313
defp render_doc(ast), do: ast && ExDoc.DocAST.to_string(ast)
1414

1515
@doc """
16-
Generate content from the module template for a given `node`
16+
Generate content from the module template for a given `node`.
1717
"""
1818
def module_page(config, module_node) do
1919
module_template(config, module_node)

lib/ex_doc/formatter/html/templates.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ defmodule ExDoc.Formatter.HTML.Templates do
1313
]
1414

1515
@doc """
16-
Generate content from the module template for a given `node`
16+
Generate content from the module template for a given `node`.
1717
"""
1818
def module_page(module_node, config) do
1919
module_template(config, module_node)

lib/ex_doc/formatter/markdown/templates.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule ExDoc.Formatter.MARKDOWN.Templates do
77
only: [before_closing_body_tag: 2, h: 1, text_to_id: 1]
88

99
@doc """
10-
Generate content from the module template for a given `node`
10+
Generate content from the module template for a given `node`.
1111
"""
1212
def module_page(config, module_node) do
1313
summary =

0 commit comments

Comments
 (0)