Skip to content

Commit

Permalink
Merge pull request #25380 from gambka/boundary_description
Browse files Browse the repository at this point in the history
Change boundary parameter description
  • Loading branch information
lindsayad authored Sep 1, 2023
2 parents 76d312a + 5b26c9d commit 1dcece9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions framework/src/interfaces/BoundaryRestrictable.C
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ BoundaryRestrictable::validParams()

// Create user-facing 'boundary' input for restricting inheriting object to boundaries
params.addParam<std::vector<BoundaryName>>(
"boundary",
"The list of boundaries (ids or names) from the mesh where this boundary condition applies");
"boundary", "The list of boundaries (ids or names) from the mesh where this object applies");

// A parameter for disabling error message for objects restrictable by boundary and block,
// if the parameter is valid it was already set so don't do anything
Expand Down
2 changes: 1 addition & 1 deletion framework/src/interfaces/BoundaryRestrictableRequired.C
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ BoundaryRestrictableRequired::validParams()

// Create user-facing 'boundary' input for restricting inheriting object to boundaries
params.addRequiredParam<std::vector<BoundaryName>>(
"boundary", "The list of boundary IDs from the mesh where this boundary condition applies");
"boundary", "The list of boundary IDs from the mesh where this object applies");

// A parameter for disabling error message for objects restrictable by boundary and block,
// if the parameter is valid it was already set so don't do anything
Expand Down

0 comments on commit 1dcece9

Please sign in to comment.