Skip to content

Commit

Permalink
[docs] Fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Sep 5, 2022
1 parent 7fc3a79 commit 0d5b208
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions include/GooseFEM/MatrixDiagonal.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class MatrixDiagonal : public MatrixBase<MatrixDiagonal>,

/**
Copy as diagonal matrix.
\param [#ndof].
\return [#ndof].
*/
[[deprecated]] const array_type::tensor<double, 1>& Todiagonal() const
{
Expand All @@ -198,7 +198,7 @@ class MatrixDiagonal : public MatrixBase<MatrixDiagonal>,

/**
Underlying matrix
\param [#ndof].
\return [#ndof].
*/
const array_type::tensor<double, 1>& data() const
{
Expand Down
8 changes: 4 additions & 4 deletions include/GooseFEM/MatrixDiagonalPartitioned.h
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class MatrixDiagonalPartitioned : public MatrixPartitionedBase<MatrixDiagonalPar

/**
Assemble to diagonal matrix (involves copies).
\param [#ndof].
\return [#ndof].
*/
array_type::tensor<double, 1> data() const
{
Expand All @@ -157,7 +157,7 @@ class MatrixDiagonalPartitioned : public MatrixPartitionedBase<MatrixDiagonalPar

/**
Pointer to data.
\param [#nnu].
\return [#nnu].
*/
const array_type::tensor<double, 1>& data_uu() const
{
Expand All @@ -166,7 +166,7 @@ class MatrixDiagonalPartitioned : public MatrixPartitionedBase<MatrixDiagonalPar

/**
Pointer to data.
\param [#nnu].
\return [#nnu].
*/
const array_type::tensor<double, 1>& data_pp() const
{
Expand All @@ -175,7 +175,7 @@ class MatrixDiagonalPartitioned : public MatrixPartitionedBase<MatrixDiagonalPar

/**
Pointer to data.
\param [#nnu].
\return [#nnu].
*/
[[deprecated]] array_type::tensor<double, 1> Todiagonal() const
{
Expand Down
1 change: 0 additions & 1 deletion include/GooseFEM/MeshQuad4.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ class FineLayer : public RegularBase2d<FineLayer> {
\tparam E e.g. `array_type::tensor<size_t, 2>`
\param coor Nodal coordinates ``[nnode, ndim]`` with ``ndim == 2``.
\param conn Connectivity ``[nne, nne]`` with ``nne == 4``.
\throw GOOSEFEM_CHECK()
*/
template <class C, class E, std::enable_if_t<xt::is_xexpression<C>::value, bool> = true>
FineLayer(const C& coor, const E& conn)
Expand Down
8 changes: 4 additions & 4 deletions include/GooseFEM/TyingsPeriodic.h
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class Control {
/**
Nodal coordinates, for the system with control nodes added to it.
\param [nnode + ndim, ndim], with nnode the number of nodes of the original system.
\return [nnode + ndim, ndim], with nnode the number of nodes of the original system.
*/
const array_type::tensor<double, 2>& coor() const
{
Expand All @@ -400,7 +400,7 @@ class Control {
/**
DOF-numbers per node, for the system with control nodes added to it.
\param [nnode + ndim, ndim], with nnode the number of nodes of the original system.
\return [nnode + ndim, ndim], with nnode the number of nodes of the original system.
*/
const array_type::tensor<size_t, 2>& dofs() const
{
Expand All @@ -410,7 +410,7 @@ class Control {
/**
DOF-numbers of each control node.
\param [ndim, ndim].
\return [ndim, ndim].
*/
const array_type::tensor<size_t, 2>& controlDofs() const
{
Expand All @@ -420,7 +420,7 @@ class Control {
/**
Node-numbers of the control nodes.
\param [ndim].
\return [ndim].
*/
const array_type::tensor<size_t, 1>& controlNodes() const
{
Expand Down

0 comments on commit 0d5b208

Please sign in to comment.