Closed
Description
When documenting the following definition the following is parsed fine:
public protocol VehiclePositionManager {
func positions(for region: Observable<LocationRegion?>, stopId: String?, routeIds: [String]?) -> Observable<[VehiclePositionType]>
}
But if the function is broken over several lines it gets truncated in the docs:
public protocol VehiclePositionManager {
func positions(for region: Observable<LocationRegion?>,
stopId: String?,
routeIds: [String]?) -> Observable<[VehiclePositionType]>
}
This problem doesn't appear to happen if the function parameters don't include any generic definitions.
Thanks
Mark