Fixed some typos in ifaces conversion descriptions

This commit is contained in:
UPSquared 2018-06-06 17:19:57 +03:00 committed by Stefan Andritoiu
parent a03e468a2a
commit 75ffc8452c
2 changed files with 6 additions and 6 deletions

View File

@ -43,9 +43,9 @@ namespace upm
* *
* 1. Inch * 1. Inch
* *
* @param celsiusValue Celsius degrees value * @param cmValue Cm distance value
* @param unit The temperature unit for the conversion. * @param unit The distance unit for the conversion.
* @return The converted temperature value * @return The converted distance value
*/ */
static float convertCmTo(float cmValue, DistanceUnit unit); static float convertCmTo(float cmValue, DistanceUnit unit);
}; };

View File

@ -47,9 +47,9 @@ namespace upm
* 3. Torr * 3. Torr
* 4. Pounds per square inch * 4. Pounds per square inch
* *
* @param celsiusValue Celsius degrees value * @param paValue Pa pressure value
* @param unit The temperature unit for the conversion. * @param unit The pressure unit for the conversion.
* @return The converted temperature value * @return The converted pressure value
*/ */
static float convertPaTo(float paValue, PressureUnit unit); static float convertPaTo(float paValue, PressureUnit unit);
}; };