diff --git a/modules/subchannel/doc/content/source/mesh/QuadInterWrapperMesh.md b/modules/subchannel/doc/content/source/mesh/QuadInterWrapperMesh.md index 561b960ad601..1109c2ad4b77 100644 --- a/modules/subchannel/doc/content/source/mesh/QuadInterWrapperMesh.md +++ b/modules/subchannel/doc/content/source/mesh/QuadInterWrapperMesh.md @@ -1,21 +1,7 @@ # QuadInterWrapperMesh -!alert construction title=Undocumented Class -The QuadInterWrapperMesh has not been documented. The content listed below should be used as a starting point for -documenting the class, which includes the typical automatic documentation associated with a -MooseObject; however, what is contained is ultimately determined by what is necessary to make the -documentation clear for users. - !syntax description /Mesh/QuadInterWrapperMesh -## Overview - -!! Replace these lines with information regarding the QuadInterWrapperMesh object. - -## Example Input File Syntax - -!! Describe and include an example of how to use the QuadInterWrapperMesh object. - !syntax parameters /Mesh/QuadInterWrapperMesh !syntax inputs /Mesh/QuadInterWrapperMesh diff --git a/modules/subchannel/doc/content/source/mesh/QuadSubChannelMesh.md b/modules/subchannel/doc/content/source/mesh/QuadSubChannelMesh.md index 011bb73e0305..4abd3b178d08 100644 --- a/modules/subchannel/doc/content/source/mesh/QuadSubChannelMesh.md +++ b/modules/subchannel/doc/content/source/mesh/QuadSubChannelMesh.md @@ -1,21 +1,7 @@ # QuadSubChannelMesh -!alert construction title=Undocumented Class -The QuadSubChannelMesh has not been documented. The content listed below should be used as a starting point for -documenting the class, which includes the typical automatic documentation associated with a -MooseObject; however, what is contained is ultimately determined by what is necessary to make the -documentation clear for users. - !syntax description /Mesh/QuadSubChannelMesh -## Overview - -!! Replace these lines with information regarding the QuadSubChannelMesh object. - -## Example Input File Syntax - -!! Describe and include an example of how to use the QuadSubChannelMesh object. - !syntax parameters /Mesh/QuadSubChannelMesh !syntax inputs /Mesh/QuadSubChannelMesh diff --git a/modules/subchannel/doc/content/source/mesh/TriInterWrapperMesh.md b/modules/subchannel/doc/content/source/mesh/TriInterWrapperMesh.md index c6db99edcd83..739ae1776db4 100644 --- a/modules/subchannel/doc/content/source/mesh/TriInterWrapperMesh.md +++ b/modules/subchannel/doc/content/source/mesh/TriInterWrapperMesh.md @@ -1,21 +1,7 @@ # TriInterWrapperMesh -!alert construction title=Undocumented Class -The TriInterWrapperMesh has not been documented. The content listed below should be used as a starting point for -documenting the class, which includes the typical automatic documentation associated with a -MooseObject; however, what is contained is ultimately determined by what is necessary to make the -documentation clear for users. - !syntax description /Mesh/TriInterWrapperMesh -## Overview - -!! Replace these lines with information regarding the TriInterWrapperMesh object. - -## Example Input File Syntax - -!! Describe and include an example of how to use the TriInterWrapperMesh object. - !syntax parameters /Mesh/TriInterWrapperMesh !syntax inputs /Mesh/TriInterWrapperMesh diff --git a/modules/subchannel/doc/content/source/mesh/TriSubChannelMesh.md b/modules/subchannel/doc/content/source/mesh/TriSubChannelMesh.md index 3233369e4a50..70a474b721a2 100644 --- a/modules/subchannel/doc/content/source/mesh/TriSubChannelMesh.md +++ b/modules/subchannel/doc/content/source/mesh/TriSubChannelMesh.md @@ -1,21 +1,7 @@ # TriSubChannelMesh -!alert construction title=Undocumented Class -The TriSubChannelMesh has not been documented. The content listed below should be used as a starting point for -documenting the class, which includes the typical automatic documentation associated with a -MooseObject; however, what is contained is ultimately determined by what is necessary to make the -documentation clear for users. - !syntax description /Mesh/TriSubChannelMesh -## Overview - -!! Replace these lines with information regarding the TriSubChannelMesh object. - -## Example Input File Syntax - -!! Describe and include an example of how to use the TriSubChannelMesh object. - !syntax parameters /Mesh/TriSubChannelMesh !syntax inputs /Mesh/TriSubChannelMesh diff --git a/modules/subchannel/src/mesh/QuadInterWrapperMesh.C b/modules/subchannel/src/mesh/QuadInterWrapperMesh.C index 5901de960874..3adbb612f044 100644 --- a/modules/subchannel/src/mesh/QuadInterWrapperMesh.C +++ b/modules/subchannel/src/mesh/QuadInterWrapperMesh.C @@ -25,7 +25,7 @@ InputParameters QuadInterWrapperMesh::validParams() { InputParameters params = InterWrapperMesh::validParams(); - params.addClassDescription("Creates an inter-wrappper mesh container arround a square " + params.addClassDescription("Creates an inter-wrappper mesh container for a square " "lattice subchannel arrangement"); return params; } diff --git a/modules/subchannel/src/mesh/QuadSubChannelMesh.C b/modules/subchannel/src/mesh/QuadSubChannelMesh.C index 587d5466c611..f0122ff0ed6e 100644 --- a/modules/subchannel/src/mesh/QuadSubChannelMesh.C +++ b/modules/subchannel/src/mesh/QuadSubChannelMesh.C @@ -25,7 +25,7 @@ InputParameters QuadSubChannelMesh::validParams() { InputParameters params = SubChannelMesh::validParams(); - params.addClassDescription("Creates an subchannel mesh container in a square " + params.addClassDescription("Creates an subchannel mesh container for a square " "lattice arrangement"); return params; } diff --git a/modules/subchannel/src/mesh/TriInterWrapperMesh.C b/modules/subchannel/src/mesh/TriInterWrapperMesh.C index 8d5cc53c5441..8b7aad0b73de 100644 --- a/modules/subchannel/src/mesh/TriInterWrapperMesh.C +++ b/modules/subchannel/src/mesh/TriInterWrapperMesh.C @@ -22,7 +22,7 @@ InputParameters TriInterWrapperMesh::validParams() { InputParameters params = InterWrapperMesh::validParams(); - params.addClassDescription("Creates an inter-wrappper mesh container arround a triangular " + params.addClassDescription("Creates an inter-wrappper mesh container for a triangular " "lattice subchannel arrangement"); return params; } diff --git a/modules/subchannel/src/mesh/TriSubChannelMesh.C b/modules/subchannel/src/mesh/TriSubChannelMesh.C index f371284433c1..35bf233e1f7f 100644 --- a/modules/subchannel/src/mesh/TriSubChannelMesh.C +++ b/modules/subchannel/src/mesh/TriSubChannelMesh.C @@ -22,7 +22,7 @@ InputParameters TriSubChannelMesh::validParams() { InputParameters params = SubChannelMesh::validParams(); - params.addClassDescription("Creates an subchannel mesh container in a triangular " + params.addClassDescription("Creates an subchannel mesh container for a triangular " "lattice arrangement"); return params; }