Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo one ':' between class names #16690

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/step-64/step-64.cc
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ namespace Step64
// DoFHandler::get_triangulation() returns a Triangulation object, not a
// parallel::TriangulationBase object, we have to downcast the return value.
// This is safe to do here because we know that the triangulation is a
// parallel:distributed::Triangulation object in fact.
// parallel::distributed::Triangulation object in fact.
template <int dim, int fe_degree>
HelmholtzOperator<dim, fe_degree>::HelmholtzOperator(
const DoFHandler<dim> &dof_handler,
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/arborx/distributed_tree.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace ArborXWrappers
{
/**
* This class implements a wrapper around ArborX::DistributedTree, the
* distributed version of ArborX:BVH.
* distributed version of ArborX::BVH.
*
* Because ArborX uses Kokkos, Kokkos needs to be initialized and finalized
* before using this class.
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/grid/grid_tools.h
Original file line number Diff line number Diff line change
Expand Up @@ -2278,7 +2278,7 @@ namespace GridTools
* GridTools::build_triangulation_from_patch.
*
* DoFHandler's built on top of Triangulation or
* parallel:distributed::Triangulation are supported and handled
* parallel::distributed::Triangulation are supported and handled
* appropriately.
*
* The result is the patch of cells representing the support of the basis
Expand Down
2 changes: 1 addition & 1 deletion include/deal.II/lac/trilinos_tpetra_sparsity_pattern.h
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ namespace LinearAlgebra
Tpetra::Map<int, dealii::types::signed_global_dof_index, NodeType>;

/**
* Typedef for Tpetra:Graph
* Typedef for Tpetra::Graph
*/
using GraphType =
Tpetra::CrsGraph<int, dealii::types::signed_global_dof_index, NodeType>;
Expand Down