From 0bf7b6eccaa16a50dc92c13dba9fb751771deabe Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Khan Date: Fri, 22 Nov 2024 15:17:49 -0800 Subject: [PATCH] Update Source/AwsCommonRuntimeKit/crt/CBOR.swift Co-authored-by: Dengke Tang --- Source/AwsCommonRuntimeKit/crt/CBOR.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/AwsCommonRuntimeKit/crt/CBOR.swift b/Source/AwsCommonRuntimeKit/crt/CBOR.swift index 8803710f..d4632aec 100644 --- a/Source/AwsCommonRuntimeKit/crt/CBOR.swift +++ b/Source/AwsCommonRuntimeKit/crt/CBOR.swift @@ -31,14 +31,14 @@ public enum CBORType: Equatable { /// with `indef_*_start` and then end the encoding with this `indef_break` type. During decoding, you will get /// the `indef_*_start` type first, followed by N elements, and the break type at the end. case indef_break - /// Indefinite Array Type - case indef_array_start - /// Indefinite Map Type - case indef_map_start /// Indefinite Bytes Type case indef_bytes_start /// Indefinite Text Type case indef_text_start + /// Indefinite Array Type + case indef_array_start + /// Indefinite Map Type + case indef_map_start } /// Encoder for the CBOR Types.