Skip to content

Commit

Permalink
[docs] Resolve #1535
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Jul 18, 2023
1 parent c3bcf37 commit 088f746
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
2 changes: 2 additions & 0 deletions include/cantera/base/clockWC.h
Expand Up @@ -14,6 +14,8 @@
namespace Cantera
{

//! @defgroup globalUtilFuncs Global Utility Functions

//! The class provides the wall clock timer in seconds
/*!
* This routine relies on the ANSI C routine, clock(), for its basic operation.
Expand Down
7 changes: 7 additions & 0 deletions include/cantera/base/stringUtils.h
Expand Up @@ -14,6 +14,11 @@
namespace Cantera
{

//! @defgroup StringConversion String Conversion
//! Utility functions for conversion of formatted strings.
//! @ingroup globalUtilFuncs
//! @{

//! Convert a vector to a string (separated by commas)
/*!
* @param v vector to be converted
Expand Down Expand Up @@ -142,6 +147,8 @@ std::string toLowerCopy(const std::string& input);
*/
bool caseInsensitiveEquals(const std::string &input, const std::string &test);

//! @}

}

#endif
2 changes: 0 additions & 2 deletions include/cantera/kinetics/EdgeKinetics.h
@@ -1,7 +1,5 @@
/**
* @file EdgeKinetics.h
*
* @ingroup electrochem
*/

// This file is part of Cantera. See License.txt in the top-level directory or
Expand Down
8 changes: 4 additions & 4 deletions include/cantera/numerics/Integrator.h
Expand Up @@ -2,10 +2,6 @@
* @file Integrator.h
*/

/**
* @defgroup intGroup Integrators for initial value problems
*/

// This file is part of Cantera. See License.txt in the top-level directory or
// at https://cantera.org/license.txt for license and copyright information.

Expand Down Expand Up @@ -335,6 +331,10 @@ class Integrator
};

// defined in Integrators.cpp

//! Create new Integrator object
//! @param itype Integration mode; either \c CVODE or \c IDA
//! @ingroup odeGroup
Integrator* newIntegrator(const std::string& itype);

} // namespace
Expand Down

0 comments on commit 088f746

Please sign in to comment.