Acknowledged
CIQQA-3911

documentation bug: Activity.Info fields have ambiguous type

According to https://developer.garmin.com/connect-iq/api-docs/Toybox/Activity/Info.html#totalAscent-var : 

---------------------------------

var totalAscent as Lang.Number or Null

The total ascent during the current activity in meters (m).

Since:

API Level 1.0.0

Returns:

-----------------------------------

Note that above it's Number or Null, but at the bottom: Returns Float

The same goes for totalDescent.

averageDistance, averageSpeed, bearing: Float or Null vs Float

averageHeartRate, averagePower: Number? vs Number

etc... I stopped checking them, but it's obvious that there are 2 issues here:

1. for many fields the 2 places disagree

2. actually since we're talking about fields and not methods, I think the Returns should be removed (and of course the type of the fields need a double check)