From bfced9ba156ec69c511983a5fc5b08ff1a8a13c4 Mon Sep 17 00:00:00 2001 From: Zheng Shaokun Date: Thu, 9 May 2024 16:00:10 +0800 Subject: [PATCH] Update test_helloworld.cpp --- src/tests/test_helloworld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/test_helloworld.cpp b/src/tests/test_helloworld.cpp index 0a930f7c9..2f808fc27 100644 --- a/src/tests/test_helloworld.cpp +++ b/src/tests/test_helloworld.cpp @@ -17,5 +17,5 @@ template int main(int argc, char *argv[]) { using fmt::format_to; - std::cout << fmt::format("shit: {}", argv[0]) << std::endl; + std::cout << fmt::format("argv[0]: {}", argv[0]) << std::endl; }