1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Mark first parameter of osm_gps_map_track_add_point as in.
Author: loqs (https://github.com/loqs)
Bug: https://github.com/nzjrs/osm-gps-map/issues/106
Bug-Debian: https://bugs.debian.org/1103354
--- a/src/osm-gps-map-track.h
+++ b/src/osm-gps-map-track.h
@@ -72,7 +72,7 @@ GType osm_gps_map_track_get_type (void) G_GNUC_CONST;
OsmGpsMapTrack * osm_gps_map_track_new (void);
/**
* osm_gps_map_track_add_point:
- * @track: (inout): a #OsmGpsMapTrack
+ * @track: (in): a #OsmGpsMapTrack
* @point: (in): a #OsmGpsMapPoint point to add
*
* Add a point to track
|