smartdevicelink / sdl_core

SmartDeviceLink In-Vehicle Software and Sample HMI
BSD 3-Clause "New" or "Revised" License
240 stars 245 forks source link

HMI_API.xml Dimension description typos #3866

Closed theresalech closed 2 years ago

theresalech commented 2 years ago

Bug Report

"Latitude" is spelled incorrectly in the descriptions for elements within the Dimension enum, here: https://github.com/smartdevicelink/sdl_core/blob/master/src/components/interfaces/HMI_API.xml#L1175.

Expected Behavior
<enum name="Dimension">
  <description>The supported dimensions of the GPS</description>
  <element name="NO_FIX" internal_name="Dimension_NO_FIX">
    <description>No GPS at all</description>
  </element>
  <element name="2D" internal_name="Dimension_2D">
    <description>Longitude and latitude</description>
  </element>
  <element name="3D" internal_name="Dimension_3D">
    <description>Longitude and latitude and altitude</description>
  </element>
</enum>
Observed Behavior
<enum name="Dimension">
  <description>The supported dimensions of the GPS</description>
  <element name="NO_FIX" internal_name="Dimension_NO_FIX">
    <description>No GPS at all</description>
  </element>
  <element name="2D" internal_name="Dimension_2D">
    <description>Longitude and lattitude</description>
  </element>
  <element name="3D" internal_name="Dimension_3D">
    <description>Longitude and lattitude and altitude</description>
  </element>
</enum>
jacobkeeler commented 2 years ago

Closed via #3867