Commit 4917cb1a authored by Ricky Wong's avatar Ricky Wong
Browse files

Fix typo in ASN1: "OtherSublassType" -> "OtherSubclassType".

parent 23bac57d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -752,7 +752,7 @@ AnimalSubclass ::= SEQUENCE {
OtherSubclass ::= SEQUENCE {
    -- @details type
    -- Type of this subclass defaults to 0 (unknown).
    type        OtherSublassType DEFAULT 0,
    type        OtherSubclassType DEFAULT 0,
    confidence  ClassConfidence DEFAULT 0
}

@@ -835,7 +835,7 @@ VehicleSubclassType ::= INTEGER {
-- @brief Other Subclass Type
-- Describes the subclass of a detected object for class other.
-- @unit n/a
OtherSublassType ::= INTEGER {
OtherSubclassType ::= INTEGER {
    unknown         (0),
    roadSideUnit    (1)
} (0..255)