From 508818dbbddf68b75cb0cd6b60b277d6a26aea25 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Mon, 11 Dec 2023 18:57:41 -0500 Subject: [PATCH] Fixup boilerplate --- demos/utils/words/Wordle-simple.cpp | 14 +++++++------- demos/utils/words/Wordle/Result.hpp | 12 ++++++------ demos/utils/words/Wordle/Wordle.cpp | 12 +++++++----- 3 files changed, 20 insertions(+), 18 deletions(-) diff --git a/demos/utils/words/Wordle-simple.cpp b/demos/utils/words/Wordle-simple.cpp index be8c470f91..9f9c548cce 100644 --- a/demos/utils/words/Wordle-simple.cpp +++ b/demos/utils/words/Wordle-simple.cpp @@ -1,11 +1,11 @@ +/* + * This file is part of Empirical, https://github.com/devosoft/Empirical + * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md + * 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-simple.cpp - * - * This version of Wordle is a bit simpler than it should be; it does not handle double letters + * @file + * @brief version of Wordle is a bit simpler than it should be; it does not handle double letters * correctly. */ diff --git a/demos/utils/words/Wordle/Result.hpp b/demos/utils/words/Wordle/Result.hpp index efce04ed72..4a4f2eacb9 100644 --- a/demos/utils/words/Wordle/Result.hpp +++ b/demos/utils/words/Wordle/Result.hpp @@ -1,10 +1,10 @@ +/* + * This file is part of Empirical, https://github.com/devosoft/Empirical + * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md + * date: 2023 +*/ /** - * @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 Result.hpp - * + * @file */ #ifndef DEMOS_UTILS_WORDS_WORDLE_RESULT_HPP_INCLUDE diff --git a/demos/utils/words/Wordle/Wordle.cpp b/demos/utils/words/Wordle/Wordle.cpp index 541817c273..9b387718cb 100644 --- a/demos/utils/words/Wordle/Wordle.cpp +++ b/demos/utils/words/Wordle/Wordle.cpp @@ -1,9 +1,11 @@ +/* + * This file is part of Empirical, https://github.com/devosoft/Empirical + * Copyright (C) Michigan State University, MIT Software license; see doc/LICENSE.md + * 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 + * @brief TODO. */ #include