Skip to content

Commit

Permalink
DPL: fix typo in message
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf committed Nov 15, 2023
1 parent 32438b0 commit 317fe0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/src/TimesliceIndex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ TimesliceIndex::OldestInputInfo TimesliceIndex::setOldestPossibleInput(Timeslice
{
// Each channel oldest possible input must be monotoically increasing.
if (timestamp.value < mChannels[channel.value].oldestForChannel.value) {
LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << " Excpected >= " << mChannels[channel.value].oldestForChannel.value;
LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << ". Expected >= " << mChannels[channel.value].oldestForChannel.value;
}
mChannels[channel.value].oldestForChannel = timestamp;
OldestInputInfo result{timestamp, channel};
Expand Down

0 comments on commit 317fe0b

Please sign in to comment.