From 5b054abe1d7199b3b6c3d97e0f6c3929fb9879b6 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Mon, 3 Mar 2025 10:50:52 -0800 Subject: [PATCH] core: Fix test documentation --- src/core/test/callback-test-suite.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/test/callback-test-suite.cc b/src/core/test/callback-test-suite.cc index 5a32ae40b..3666d389d 100644 --- a/src/core/test/callback-test-suite.cc +++ b/src/core/test/callback-test-suite.cc @@ -174,7 +174,7 @@ BasicCallbackTestCase::DoRun() // // Make sure we can declare and compile a Callback pointing to a member - // function that returns void, takes two parameters, and execute it. + // function that returns int, takes two parameters, and execute it. // Callback target4 = Callback(&BasicCallbackTestCase::Target4, this);