Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ike-kazu committed Dec 27, 2024
1 parent 2706c08 commit d83d65c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct HesaiDecodeFilteredInfo
uint16_t fov_filtered_count = 0;
uint16_t timestamp_filtered_count = 0;
uint16_t invalid_point_count = 0;
uint16_t identical_return_point_count = 0;
uint16_t multiple_return_point_count = 0;
uint16_t mutliple_return_point_count = 0;

Check warning on line 49 in nebula_decoders/include/nebula_decoders/nebula_decoders_hesai/decoders/hesai_decoder.hpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mutliple)
uint16_t total_kept_point_count = 0;
uint16_t invalid_packet_count = 0;
Expand All @@ -62,7 +62,7 @@ struct HesaiDecodeFilteredInfo
fov_filtered_count = 0;
timestamp_filtered_count = 0;
invalid_point_count = 0;
identical_return_point_count = 0;
multiple_return_point_count = 0;
mutliple_return_point_count = 0;

Check warning on line 66 in nebula_decoders/include/nebula_decoders/nebula_decoders_hesai/decoders/hesai_decoder.hpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mutliple)
total_kept_point_count = 0;
invalid_packet_count = 0;
Expand Down Expand Up @@ -97,7 +97,7 @@ struct HesaiDecodeFilteredInfo
invalid_j["invalid_packet_count"] = invalid_packet_count;
nlohmann::json identical_j;
identical_j["filter"] = "identical";
identical_j["identical_return_point_count"] = identical_return_point_count;
identical_j["multiple_return_point_count"] = multiple_return_point_count;
nlohmann::json multiple_j;
multiple_j["filter"] = "multiple";
multiple_j["mutliple_return_point_count"] = mutliple_return_point_count;

Check warning on line 103 in nebula_decoders/include/nebula_decoders/nebula_decoders_hesai/decoders/hesai_decoder.hpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mutliple)

Check warning on line 103 in nebula_decoders/include/nebula_decoders/nebula_decoders_hesai/decoders/hesai_decoder.hpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (mutliple)
Expand Down Expand Up @@ -245,7 +245,7 @@ class HesaiDecoder : public HesaiScanDecoder

// Keep only last of multiple identical points
if (return_type == ReturnType::IDENTICAL && block_offset != n_blocks - 1) {
decode_filtered_info_.identical_return_point_count++;
decode_filtered_info_.multiple_return_point_count++;
continue;
}

Expand Down

0 comments on commit d83d65c

Please sign in to comment.