Skip to content

Commit

Permalink
Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
squidfunk committed Aug 27, 2023
1 parent fbb7a5e commit da21786
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion material/plugins/blog/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def _generate_pages(self, view: View, config: MkDocsConfig, files: Files):
for at in range(step, len(view.posts), step):
base, _ = posixpath.splitext(view.file.src_uri)

# Compute path and create a file for path resolution
# Compute path and create a file for pagination
path = self._format_path_for_pagination(base, 1 + at // step)
file = self._path_to_file(path, config)

Expand Down
2 changes: 1 addition & 1 deletion src/plugins/blog/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ def _generate_pages(self, view: View, config: MkDocsConfig, files: Files):
for at in range(step, len(view.posts), step):
base, _ = posixpath.splitext(view.file.src_uri)

# Compute path and create a file for path resolution
# Compute path and create a file for pagination
path = self._format_path_for_pagination(base, 1 + at // step)
file = self._path_to_file(path, config)

Expand Down

0 comments on commit da21786

Please sign in to comment.