From b8e11802f9ce99cb2bb3fec23687fa0e05ad56e3 Mon Sep 17 00:00:00 2001 From: Eric Shepherd Date: Mon, 4 Nov 2024 10:59:47 -0500 Subject: [PATCH] Remove stray spaces in snippet tags The snippet tags for `swift.identity.sso.create-resolver` had a space after the colon. This may explain why this snippet is missing. --- .../identity-resolvers/sso-resolver/Sources/entry.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/example_code/identity-resolvers/sso-resolver/Sources/entry.swift b/swift/example_code/identity-resolvers/sso-resolver/Sources/entry.swift index d9552b3d642..c9767c11d9c 100644 --- a/swift/example_code/identity-resolvers/sso-resolver/Sources/entry.swift +++ b/swift/example_code/identity-resolvers/sso-resolver/Sources/entry.swift @@ -35,13 +35,13 @@ struct ExampleCommand: ParsableCommand { /// example. func runAsync() async throws { do { - // snippet-start: [swift.identity.sso.create-resolver] + // snippet-start:[swift.identity.sso.create-resolver] let identityResolver = try SSOAWSCredentialIdentityResolver( profileName: profile, configFilePath: config, credentialsFilePath: credentials ) - // snippet-end: [swift.identity.sso.create-resolver] + // snippet-end:[swift.identity.sso.create-resolver] // Call the function that fetches the Amazon S3 bucket names, then // output the names.