diff --git a/demos/utils/words/Wordle-simple.cpp b/demos/utils/words/Wordle-simple.cpp index 2c46de44d5..b745a620a3 100644 --- a/demos/utils/words/Wordle-simple.cpp +++ b/demos/utils/words/Wordle-simple.cpp @@ -4,8 +4,8 @@ * date: 2022 */ /** - * This version of Wordle is a bit simpler than it should be; it does not handle double letters - * correctly. + * @file + * @brief TODO. */ #include diff --git a/demos/utils/words/Wordle/Wordle.cpp b/demos/utils/words/Wordle/Wordle.cpp index 4c7fbe73cb..b215d2f06e 100644 --- a/demos/utils/words/Wordle/Wordle.cpp +++ b/demos/utils/words/Wordle/Wordle.cpp @@ -4,11 +4,7 @@ * date: 2022 */ /** - * @note This file is part of Empirical, https://github.com/devosoft/Empirical - * @copyright Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md - * @date 2022 - * - * @file Wordle.cpp + * @file */ #include diff --git a/include/emp/datastructs/QueueCache.hpp b/include/emp/datastructs/QueueCache.hpp index cfb0ab65e6..105484e777 100644 --- a/include/emp/datastructs/QueueCache.hpp +++ b/include/emp/datastructs/QueueCache.hpp @@ -6,7 +6,7 @@ /** * @file * @brief A simple implementation of a Least-Recently Used Cache. - * It orders elements by access time and removes the stalest ones in case + * It orders elements by access time and removes the stalest ones in case * maximum capacity is reached. */ diff --git a/tests/base/notify.cpp b/tests/base/notify.cpp index 84967dd269..b459d889de 100644 --- a/tests/base/notify.cpp +++ b/tests/base/notify.cpp @@ -4,11 +4,7 @@ * date: 2022 */ /** - * @note This file is part of Empirical, https://github.com/devosoft/Empirical - * @copyright Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md - * @date 2022 - * - * @file notify.cpp + * @file */ #define CATCH_CONFIG_MAIN diff --git a/tests/bits/Bits.cpp b/tests/bits/Bits.cpp index 85339d2dce..5f7b552f19 100644 --- a/tests/bits/Bits.cpp +++ b/tests/bits/Bits.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ + #include #include #include diff --git a/tests/data/Datum.cpp b/tests/data/Datum.cpp index d4cfa575b2..c7825b08af 100644 --- a/tests/data/Datum.cpp +++ b/tests/data/Datum.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ + #ifndef CATCH_CONFIG_MAIN #define CATCH_CONFIG_MAIN #endif diff --git a/tests/data/SimpleParser.cpp b/tests/data/SimpleParser.cpp index c1dfd184a7..aa13902df1 100644 --- a/tests/data/SimpleParser.cpp +++ b/tests/data/SimpleParser.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ + #define CATCH_CONFIG_MAIN #include "third-party/Catch/single_include/catch2/catch.hpp" diff --git a/tests/datastructs/ra_map.cpp b/tests/datastructs/ra_map.cpp index 2a077823ba..50ebff8268 100644 --- a/tests/datastructs/ra_map.cpp +++ b/tests/datastructs/ra_map.cpp @@ -3,6 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ #include "third-party/Catch/single_include/catch2/catch.hpp" diff --git a/tests/hardware/VirtualCPU.cpp b/tests/hardware/VirtualCPU.cpp index b14c239ca6..b784e37823 100644 --- a/tests/hardware/VirtualCPU.cpp +++ b/tests/hardware/VirtualCPU.cpp @@ -4,6 +4,10 @@ * date: 2021-2022 */ /** + * @file + */ + +/* * TODO * [ ] *INSTRUCTIONS struct * [ ] Constructors assign values correctly diff --git a/tests/math/RangeSet.cpp b/tests/math/RangeSet.cpp index ff4c73d8e4..e29feb75b5 100644 --- a/tests/math/RangeSet.cpp +++ b/tests/math/RangeSet.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2023 */ +/** + * @file + */ + #include #include diff --git a/tests/meta/FunInfo.cpp b/tests/meta/FunInfo.cpp index fa5d254b86..3d770ede29 100644 --- a/tests/meta/FunInfo.cpp +++ b/tests/meta/FunInfo.cpp @@ -3,6 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2021-2022 */ +/** + * @file + */ #define CATCH_CONFIG_MAIN diff --git a/tests/text/EmphaticText.cpp b/tests/text/EmphaticText.cpp index f2eb9a7db1..c8ebd23770 100644 --- a/tests/text/EmphaticText.cpp +++ b/tests/text/EmphaticText.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ + #include #include diff --git a/tests/text/HTMLText.cpp b/tests/text/HTMLText.cpp index 57249b290d..f0b143e4c6 100644 --- a/tests/text/HTMLText.cpp +++ b/tests/text/HTMLText.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022-2023 */ +/** + * @file + */ + #include #include diff --git a/tests/text/Text.cpp b/tests/text/Text.cpp index a2a13025ed..e2ed21c048 100644 --- a/tests/text/Text.cpp +++ b/tests/text/Text.cpp @@ -3,6 +3,10 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ + #include #include diff --git a/tests/tools/MemoryFactory.cpp b/tests/tools/MemoryFactory.cpp index 6024604013..d841f8f102 100644 --- a/tests/tools/MemoryFactory.cpp +++ b/tests/tools/MemoryFactory.cpp @@ -3,6 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ #include "../third-party/Catch/single_include/catch2/catch.hpp" diff --git a/tests/tools/StaticString.cpp b/tests/tools/StaticString.cpp index 068d36ba7c..bd6d5f3b0e 100644 --- a/tests/tools/StaticString.cpp +++ b/tests/tools/StaticString.cpp @@ -3,6 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2022 */ +/** + * @file + */ #include "../third-party/Catch/single_include/catch2/catch.hpp" diff --git a/tests/tools/String.cpp b/tests/tools/String.cpp index a1e136029a..94b95170a1 100644 --- a/tests/tools/String.cpp +++ b/tests/tools/String.cpp @@ -3,10 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2023 */ - -#include "../third-party/Catch/single_include/catch2/catch.hpp" - -#include "emp/tools/String.hpp" +/** + * @file + */ TEST_CASE("Test String Constructors", "[tools]") { diff --git a/tests/tools/char_utils.cpp b/tests/tools/char_utils.cpp index 7fb5dc73d6..f3437ff519 100644 --- a/tests/tools/char_utils.cpp +++ b/tests/tools/char_utils.cpp @@ -3,6 +3,9 @@ * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md * date: 2021-2022 */ +/** + * @file + */ #include "../third-party/Catch/single_include/catch2/catch.hpp"