From edb7c2ce5393999e892aec53a773e522244433e4 Mon Sep 17 00:00:00 2001 From: Seyed Mojtaba Hosseini Zeidabadi Date: Thu, 12 Jun 2025 15:17:05 +0330 Subject: [PATCH] docs: fix `NSDictionary` in firebaseFunctions internal sources --- FirebaseFunctions/Sources/Internal/FunctionsSerializer.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FirebaseFunctions/Sources/Internal/FunctionsSerializer.swift b/FirebaseFunctions/Sources/Internal/FunctionsSerializer.swift index 6220f031252..8fb0ba4cc61 100644 --- a/FirebaseFunctions/Sources/Internal/FunctionsSerializer.swift +++ b/FirebaseFunctions/Sources/Internal/FunctionsSerializer.swift @@ -29,7 +29,7 @@ final class FunctionsSerializer: Sendable { // - NSNull (note: `nil` collection values from a Swift caller will be treated as NSNull) // - NSNumber // - NSString - // - NSDicionary + // - NSDictionary // - NSArray func encode(_ object: Any) throws -> Any { if object is NSNull { @@ -58,7 +58,7 @@ final class FunctionsSerializer: Sendable { // - NSNull (note: `nil` collection values from a Swift caller will be treated as NSNull) // - NSNumber // - NSString - // - NSDicionary + // - NSDictionary // - NSArray func decode(_ object: Any) throws -> Any { // Return these types as is. PORTING NOTE: Moved from the bottom of the func for readability.