From 5655a3c7c077b6b3cfca8161189f890782978e94 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 6 Aug 2019 17:36:46 -0400 Subject: [PATCH] Update comments --- test.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test.cpp b/test.cpp index d1c143bc..7a483f6a 100644 --- a/test.cpp +++ b/test.cpp @@ -176,9 +176,8 @@ int scoped_main(int argc, char *argv[]) // A hint to help locate TestData/ and TestVectors/ after install. SetArgvPathHint(argv[0], g_argvPathHint); - // Set a seed for reproducible results. It can be set on the command line. - // If the seed is short then it is padded with spaces. If the seed is - // missing then time() is used. + // Set a seed for reproducible results. If the seed is too short then + // it is padded with spaces. If the seed is missing then time() is used. // For example: // ./cryptest.exe v seed=abcdefg SetGlobalSeed(argc, argv, s_globalSeed);