File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -33,16 +33,14 @@ import Foundation
3333// accessed via the low-level `get` and `set` methods (or the subscript
3434// operator).
3535//
36- // Besides, the class provides typed accessors , acting as wrappers on top
36+ // Besides, the class provides typed properties , acting as wrappers on top
3737// of the untyped storage (i.e. serializing to and parsing from string
3838// values).
3939//
4040// ## Unmapped parameters
4141//
42- // The following parameters are too complex and have no typed accessors:
43- //
44- // - `filters`
45- // - `numericFilters`
42+ // Some parameters are too complex and have no typed accessors. They are
43+ // documented in the class's description.
4644//
4745// # Bridgeability
4846//
@@ -147,6 +145,12 @@ public func ==(lhs: LatLng, rhs: LatLng) -> Bool {
147145/// 2. Using the low-level, untyped getter (`get()`) and setter (`set()`) or the subscript operator.
148146/// Use this approach if the parameter you wish to set is not supported by this class.
149147///
148+ /// The following parameters have no typed property because they are too complex. You can still access them using
149+ /// the low-level methods/subscript operator:
150+ ///
151+ /// - `filters`
152+ /// - `numericFilters`
153+ ///
150154@objc public class Query : NSObject , NSCopying {
151155
152156 // MARK: - Low-level (untyped) parameters
You can’t perform that action at this time.
0 commit comments