From 4e107f2b4479c1d44914ff02dd0fb796fbceee10 Mon Sep 17 00:00:00 2001 From: Eric Shepherd Date: Tue, 6 May 2025 23:12:25 +0000 Subject: [PATCH] Fix SoS tags --- swift/example_code/swift-sdk/http-config/Sources/entry.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/swift/example_code/swift-sdk/http-config/Sources/entry.swift b/swift/example_code/swift-sdk/http-config/Sources/entry.swift index f60991ac53f..41eff1e1e90 100644 --- a/swift/example_code/swift-sdk/http-config/Sources/entry.swift +++ b/swift/example_code/swift-sdk/http-config/Sources/entry.swift @@ -49,7 +49,7 @@ struct ExampleCommand: ParsableCommand { print("*** Getting bucket list with custom timeouts...") - // snippet-start: [swift.http-config.timeouts] + // snippet-start:[swift.http-config.timeouts] do { let config = try await S3Client.S3ClientConfiguration( region: region, @@ -66,7 +66,7 @@ struct ExampleCommand: ParsableCommand { } catch { print("*** Unexpected error occurred requesting the bucket list.") } - // snippet-end: [swift.http-config.timeouts] + // snippet-end:[swift.http-config.timeouts] } }