From d21c709c5a0cd9cadae6d7355dc289b0fa9eb45f Mon Sep 17 00:00:00 2001 From: Eric Shepherd Date: Fri, 29 Sep 2023 11:38:34 -0400 Subject: [PATCH] Swift Fix incorrect comment in mocking sample (#5421) Fix incorrect comment A comment was referring to a class by an old name. Now fixed to use the current name of the class for this example. --- .../example_code/swift-sdk/mocking/Sources/BucketManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/example_code/swift-sdk/mocking/Sources/BucketManager.swift b/swift/example_code/swift-sdk/mocking/Sources/BucketManager.swift index b78afd40d81..04aae766c65 100644 --- a/swift/example_code/swift-sdk/mocking/Sources/BucketManager.swift +++ b/swift/example_code/swift-sdk/mocking/Sources/BucketManager.swift @@ -19,7 +19,7 @@ public class BucketManager { /// ``MockS3Session``. var session: S3SessionProtocol - /// Initialize the ``S3Manager`` to call Amazon S3 functions using the + /// Initialize the ``BucketManager`` to call Amazon S3 functions using the /// specified object that implements ``S3SessionProtocol``. /// /// - Parameter session: The session object to use when calling Amazon S3.