From 0fb958edccf4c5c51afb1b1e6e44d6bac6d2efb5 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Thu, 20 Jun 2024 18:24:41 -0400 Subject: [PATCH] i#6844 skip-to-time: Fix typos in drmemtrace docs (#6850) Fixes two misspellings of "timestamp" in the docs for the new times_of_interest drmemtrace scheduler feature. Issue: #6844 --- clients/drcachesim/scheduler/scheduler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/drcachesim/scheduler/scheduler.h b/clients/drcachesim/scheduler/scheduler.h index afdb0ee1b53..d92a7f8eeb4 100644 --- a/clients/drcachesim/scheduler/scheduler.h +++ b/clients/drcachesim/scheduler/scheduler.h @@ -182,11 +182,11 @@ template class scheduler_tmpl_t { { } /** - * The starting time in the microsecond timstamp units in the trace. + * The starting time in the microsecond timestamp units in the trace. */ uint64_t start_timestamp; /** - * The ending time in the microsecond timstamp units in the trace. + * The ending time in the microsecond timestamp units in the trace. * The ending time is inclusive. 0 means the end of the trace. */ uint64_t stop_timestamp;