diff options
author | Sven Göthel <[email protected]> | 2024-04-30 12:34:00 +0200 |
---|---|---|
committer | Sven Göthel <[email protected]> | 2024-04-30 12:34:00 +0200 |
commit | a86742c071cc0bfe0634ef1ad9a65aeca42fe054 (patch) | |
tree | cfbe10cffceb17ebe00f4213b65bc56a727934f7 | |
parent | ea37c7d2ae4a789753491a699c6ceb56293b5479 (diff) |
Cleanup groups OSSup + Math
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | include/jau/math/math_error.hpp | 4 | ||||
-rw-r--r-- | include/jau/os/os_support.hpp | 2 |
3 files changed, 6 insertions, 5 deletions
@@ -26,12 +26,13 @@ Up to date API documentation can be found: * [File Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__FileUtils.html) * [Fraction Arithmetic and Time](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Fractions.html) * [Function Wrapper](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__FunctionWrap.html) + * [IO Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__IOUtils.html) + * [Java VM Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__JavaVM.html) * [Math](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Math.html) * [Integer types and arithmetic](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Integer.html) * [Float types and arithmetic](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__Floats.html) * [Constant Time (CT) Operations](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__ConstantTime.html) - * [IO Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__IOUtils.html) - * [Java VM Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__JavaVM.html) + * [OS Support](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__OSSup.html) * [Network Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__NetUtils.html) * [String Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__StringUtils.html) * [System and OS Utilities](https://jausoft.com/projects/jaulib/build/documentation/cpp/html/group__SysUtils.html) diff --git a/include/jau/math/math_error.hpp b/include/jau/math/math_error.hpp index 0ca381d..f713be4 100644 --- a/include/jau/math/math_error.hpp +++ b/include/jau/math/math_error.hpp @@ -31,8 +31,8 @@ namespace jau { - /** @defgroup Math Specific Mathematical Operations and Functionality - * Specific mathematical operations and functionality, e.g. linear algebra, meta group + /** @defgroup Math Math Support + * Math Support Functionality, e.g. linear algebra, meta group * * Further support is coming from * - \ref Integer diff --git a/include/jau/os/os_support.hpp b/include/jau/os/os_support.hpp index 59d3313..8fa3ba3 100644 --- a/include/jau/os/os_support.hpp +++ b/include/jau/os/os_support.hpp @@ -33,7 +33,7 @@ namespace jau::os { /** @defgroup OSSup OS Support - * Low level OS Support + * OS Support Functionality * * Available predefined macros denoting the [Operating Systems](https://sourceforge.net/p/predef/wiki/OperatingSystems/) * - `__FreeBSD__` : FreeBSD |