From 5158e548969a2e536b424220073ce069f9c31237 Mon Sep 17 00:00:00 2001 From: John Ryan Date: Wed, 9 Oct 2019 16:25:06 -0700 Subject: [PATCH] avoid doc warning on master branch --- lib/src/geo/crs/crs.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/src/geo/crs/crs.dart b/lib/src/geo/crs/crs.dart index a976c301c..0c9c57f3e 100644 --- a/lib/src/geo/crs/crs.dart +++ b/lib/src/geo/crs/crs.dart @@ -7,13 +7,11 @@ import 'package:flutter_map/src/core/bounds.dart'; import 'package:flutter_map/src/core/point.dart'; -/// An abstract representation of a [Coordinate Reference System][qgis_crs_def]. +/// An abstract representation of a +/// [Coordinate Reference System](https://docs.qgis.org/testing/en/docs/gentle_gis_introduction/coordinate_reference_systems.html). /// /// The main objective of a CRS is to handle the conversion between surface /// points of objects of different dimensions. In our case 3D and 2D objects. -/// -/// -/// [qgis_crs_def]: https://docs.qgis.org/testing/en/docs/gentle_gis_introduction/coordinate_reference_systems.html abstract class Crs { String get code; Projection get projection;