Skip to content

Commit

Permalink
Extra spacing between header and following lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sichan Yoo committed Aug 1, 2024
1 parent e1182ea commit 37baf7b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct DocIndexBuilder {
///
/// - Returns: List of markdown links to AWS module documentations
private func buildAWSRuntimeModuleIndex() -> String {
let header = "## AWS Runtime Module Documentation\n"
let header = "## AWS Runtime Module Documentation\n\n"
return header + awsRuntimeModules.map { module in
let urlModule = module.lowercased(with: Locale(identifier: "en_US_POSIX"))
return "[\(module)](../../../../../swift/api/\(urlModule)/latest)\n"
Expand All @@ -81,7 +81,7 @@ struct DocIndexBuilder {
///
/// - Returns: A pragma mark comment to provide separation between the non-generated (base) and generated content
private func buildServiceIndex() -> String {
let header = "## Service Documentation\n"
let header = "## Service Documentation\n\n"
return header + services.map { service in
let urlService = service.lowercased(with: Locale(identifier: "en_US_POSIX"))
return "[\(service)](../../../../../swift/api/\(urlService)/latest)\n"
Expand Down

0 comments on commit 37baf7b

Please sign in to comment.