From f4d53f3398f68b42af414380a09336105e53a457 Mon Sep 17 00:00:00 2001 From: Dennis Traub Date: Thu, 16 Nov 2023 21:21:46 +0100 Subject: [PATCH] Go Bedrock example: Fix wording in code comment (#5678) Fix wording in code comment --- gov2/bedrock/actions/foundation_model.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gov2/bedrock/actions/foundation_model.go b/gov2/bedrock/actions/foundation_model.go index 7357b9f183b..403730d06db 100644 --- a/gov2/bedrock/actions/foundation_model.go +++ b/gov2/bedrock/actions/foundation_model.go @@ -14,7 +14,7 @@ import ( // snippet-start:[gov2.bedrock.FoundationModelWrapper.complete] // snippet-start:[gov2.bedrock.FoundationModelWrapper.struct] -// PolicyWrapper encapsulates Amazon Bedrock actions used in the examples. +// FoundationModelWrapper encapsulates Amazon Bedrock actions used in the examples. // It contains a Bedrock service client that is used to perform foundation model actions. type FoundationModelWrapper struct { BedrockClient *bedrock.Client @@ -41,4 +41,4 @@ func (wrapper FoundationModelWrapper) ListFoundationModels() ([]types.Foundation // snippet-end:[gov2.bedrock.ListFoundationModels] -// snippet-end:[gov2.bedrock.FoundationModelWrapper.complete] \ No newline at end of file +// snippet-end:[gov2.bedrock.FoundationModelWrapper.complete]