Skip to content

Commit

Permalink
API docu -> API docs
Browse files Browse the repository at this point in the history
  • Loading branch information
paveljanda committed Feb 27, 2018
1 parent fbc6c61 commit b0b364d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Generator/Assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private function replaceTitle(string & $template, string $content): void // Inte
if (preg_match('/<h1>(.+)<\/h1>/', $content, $matches)) {
$template = str_replace('{title}', $matches[1], $template);
} else {
$template = str_replace('{title}', 'API Docu', $template);
$template = str_replace('{title}', 'API Docs', $template);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Markdown/Macros/MacroCleanIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ private function findHeading(string $content): string
return $matches[0];
}

return '# API Docu';
return '# API Docs';
}


Expand Down

0 comments on commit b0b364d

Please sign in to comment.