Skip to content

Commit 82901cf

Browse files
authored
Fix comments (#321)
1 parent c318e49 commit 82901cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sensorprocess/lidarsensorprocess.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (config *Config) StartLidar(ctx context.Context) {
3131
// addLidarReadingsInOnline ensures the most recent lidar scan, after any corresponding IMU scans, gets processed
3232
// by cartographer.
3333
func (config *Config) addLidarReadingInOnline(ctx context.Context) error {
34-
// get next lidar data response; ignoring status since it is always false
34+
// get next lidar data response
3535
lidarReading, err := config.Lidar.TimedLidarReading(ctx)
3636
if err != nil {
3737
if errors.Is(err, replaypcd.ErrEndOfDataset) {

sensorprocess/movementsensorprocess.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ func (config *Config) StartMovementSensor(ctx context.Context) {
3131
// addMovementSensorReadingInOnline attempts to get and add a movement sensor reading to the
3232
// cartofacade.
3333
func (config *Config) addMovementSensorReadingInOnline(ctx context.Context) error {
34-
// get next movement sensor data response; ignoring status since it is always false
34+
// get next movement sensor data response
3535
movementSensorReading, err := config.MovementSensor.TimedMovementSensorReading(ctx)
3636
if err != nil {
3737
if errors.Is(err, replaymovementsensor.ErrEndOfDataset) {

0 commit comments

Comments
 (0)