Skip to content

Commit 80b5ec3

Browse files
author
Clément Le Provost
committed
Move documentation about missing query parameters to the class description
1 parent 168f7d9 commit 80b5ec3

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

Source/Query.swift

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)