smartdevicelink / sdl_core

SmartDeviceLink In-Vehicle Software and Sample HMI

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HMI_API.xml Dimension description typos

theresalech opened this issue · comments

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>

Closed via #3867