diff --git a/ProcessLib/BoundaryCondition/DirichletBoundaryCondition.h b/ProcessLib/BoundaryCondition/DirichletBoundaryCondition.h
index f717750a80da902d100677bf25b554f5cfb7fc31..0d6ce172b6f1dfdff237730875ba030739880014 100644
--- a/ProcessLib/BoundaryCondition/DirichletBoundaryCondition.h
+++ b/ProcessLib/BoundaryCondition/DirichletBoundaryCondition.h
@@ -63,7 +63,7 @@ public:
 
         MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);
 
-        // Create local DOF table from the bc mesh subset for the given variable
+        // Create local DOF table from the BC mesh subset for the given variable
         // and component id.
         _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
             variable_id, {component_id}, std::move(bc_mesh_subset)));
diff --git a/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h b/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
index 9e38b390f533807b89f4bb79583186bc2a0232af..98784d5b51fcd625e5c43340e4581669397f425a 100644
--- a/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
+++ b/ProcessLib/BoundaryCondition/GenericNaturalBoundaryCondition-impl.h
@@ -65,7 +65,7 @@ GenericNaturalBoundaryCondition<BoundaryConditionData,
 
     MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);
 
-    // Create local DOF table from the bc mesh subset for the given variable and
+    // Create local DOF table from the BC mesh subset for the given variable and
     // component id.
     _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
         variable_id, {component_id}, std::move(bc_mesh_subset)));
diff --git a/ProcessLib/BoundaryCondition/GenericNonuniformNaturalBoundaryCondition-impl.h b/ProcessLib/BoundaryCondition/GenericNonuniformNaturalBoundaryCondition-impl.h
index 6fd23dab37ceb288bd45050076a6e6e861e74064..8427623d8fd35d8a68247fb6c6e2809ff8c33d19 100644
--- a/ProcessLib/BoundaryCondition/GenericNonuniformNaturalBoundaryCondition-impl.h
+++ b/ProcessLib/BoundaryCondition/GenericNonuniformNaturalBoundaryCondition-impl.h
@@ -56,7 +56,7 @@ GenericNonuniformNaturalBoundaryCondition<BoundaryConditionData,
 
     MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);
 
-    // Create local DOF table from the bc mesh subset for the given variable and
+    // Create local DOF table from the BC mesh subset for the given variable and
     // component id.
     _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
         variable_id, {component_id}, std::move(bc_mesh_subset)));
diff --git a/ProcessLib/BoundaryCondition/NonuniformDirichletBoundaryCondition.h b/ProcessLib/BoundaryCondition/NonuniformDirichletBoundaryCondition.h
index dfd7ee5be5bacb0f7db70a517468b81045ae4ab4..424f6df3de1c5c225a3f809a42080e987d9ac0aa 100644
--- a/ProcessLib/BoundaryCondition/NonuniformDirichletBoundaryCondition.h
+++ b/ProcessLib/BoundaryCondition/NonuniformDirichletBoundaryCondition.h
@@ -68,7 +68,7 @@ public:
 
         MeshLib::MeshSubset boundary_mesh_subset(_boundary_mesh, bc_nodes);
 
-        // Create local DOF table from the bc mesh subset for the given variable
+        // Create local DOF table from the BC mesh subset for the given variable
         // and component id.
         _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
             variable_id, {component_id}, std::move(boundary_mesh_subset)));
diff --git a/ProcessLib/BoundaryCondition/NormalTractionBoundaryCondition-impl.h b/ProcessLib/BoundaryCondition/NormalTractionBoundaryCondition-impl.h
index 1ced2a73104e786b7318b21da091a522c1db8d90..00f100646b557926ef418d44f32cf9482308d4f7 100644
--- a/ProcessLib/BoundaryCondition/NormalTractionBoundaryCondition-impl.h
+++ b/ProcessLib/BoundaryCondition/NormalTractionBoundaryCondition-impl.h
@@ -47,7 +47,7 @@ NormalTractionBoundaryCondition<LocalAssemblerImplementation>::
 
     MeshLib::MeshSubset bc_mesh_subset(_bc_mesh, bc_nodes);
 
-    // Create local DOF table from the bc mesh subset for the given variable and
+    // Create local DOF table from the BC mesh subset for the given variable and
     // component ids.
     _dof_table_boundary.reset(dof_table_bulk.deriveBoundaryConstrainedMap(
         variable_id, component_ids, std::move(bc_mesh_subset)));