Skip to content

Commit 87b7ce0

Browse files
committed
Fix comment with example of LWG_REVISION_TIME env var
1 parent 8cb63b5 commit 87b7ce0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/report_generator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace
2929
auto const timestamp = [] {
3030
// Allow the timestamp to be set from a unix timestamp in the environment,
3131
// to support reproducible HTML output. For example:
32-
// LWG_REVISION_TIME=$(date +%s -d "2025-10-07 at 09:38:29 UTC") make lists
32+
// LWG_REVISION_TIME=$(date +%s -d "2025-10-07 09:38:29 UTC") make lists
3333
if (const char* revtime = std::getenv("LWG_REVISION_TIME"))
3434
return std::chrono::sys_seconds(std::chrono::seconds(std::stol(revtime)));
3535
auto now = std::chrono::system_clock::now();

0 commit comments

Comments
 (0)