From c8e9f19d0c3211b9cdf4a7b067185f73988426fd Mon Sep 17 00:00:00 2001 From: Russell Cohen Date: Mon, 13 Dec 2021 16:23:30 -0500 Subject: [PATCH] Add link to developer guide (#969) * Add link to developer guide * Update buildSrc/src/main/kotlin/DocsLandingPage.kt Co-authored-by: John DiSanti Co-authored-by: John DiSanti --- buildSrc/src/main/kotlin/DocsLandingPage.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildSrc/src/main/kotlin/DocsLandingPage.kt b/buildSrc/src/main/kotlin/DocsLandingPage.kt index 10522f482..841bb950b 100644 --- a/buildSrc/src/main/kotlin/DocsLandingPage.kt +++ b/buildSrc/src/main/kotlin/DocsLandingPage.kt @@ -19,8 +19,9 @@ fun Project.docsLandingPage(awsServices: List, outputDir: File) { with(writer) { write("# AWS SDK for Rust") write( - """The AWS SDK for Rust contains one crate for each AWS service, as well as ${cratesIo("aws-config")} ${docsRs("aws-config")}, - |a crate implementing configuration loading such as credential providers.""".trimMargin() + "The AWS SDK for Rust contains one crate for each AWS service, as well as ${cratesIo("aws-config")} " + + "${docsRs("aws-config")}, a crate implementing configuration loading such as credential providers. " + + "For usage documentation see the [Developer Guide](https://docs.aws.amazon.com/sdk-for-rust/latest/dg/welcome.html)." ) writer.write("## AWS Services") -- GitLab