Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mpotse committed Mar 11, 2024
1 parent bb20897 commit bfaa7fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/mmg3d/hash_3d.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ int MMG3D_hashTetra(MMG5_pMesh mesh, int pack) {
*
* \remark Adjacencies between prisms and tetra are not filled here.
*
* \warning check the hashtable efficiency
* \warning check the efficiency of the hash table
*/
int MMG3D_hashPrism(MMG5_pMesh mesh) {
MMG5_pPrism pp,pp1;
Expand Down Expand Up @@ -1112,10 +1112,10 @@ int MMG5_hNew(MMG5_pMesh mesh,MMG5_HGeom *hash,MMG5_int hsiz,MMG5_int hmax) {
}

/**
* \param mesh pointer to he mesh structure.
* \param mesh pointer to the mesh structure.
* \return 0 if failed, 1 otherwise
*
* Build hashtable for initial mesh edges.
* Build hash table for initial mesh edges.
*
*/
int MMG5_hGeom(MMG5_pMesh mesh) {
Expand Down Expand Up @@ -1291,7 +1291,7 @@ int MMG5_bdryTria(MMG5_pMesh mesh, MMG5_int ntmesh) {

if ( mesh->nprism && (ntmesh!=ntinit) ) {
/* If a triangle at the interface between a prism and a tetra is not
* provided, the hashtable is used to recover from the prism a boundary tria
* provided, the hash table is used to recover from the prism a boundary tria
* created by tetra */
if ( ! MMG5_hashNew(mesh,&hash,0.51*ntmesh,1.51*ntmesh) ) return 0;
tofree=1;
Expand Down
2 changes: 1 addition & 1 deletion src/mmg3d/mmg3d3.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ static MMG5_int MMG5_spllag(MMG5_pMesh mesh,MMG5_pSol disp,MMG5_pSol met,int itd
* toward the \a NULL pointer otherwise.
* \param itdeg degraded elements.
*
* \return -1 if fail, he number of swap otherwise.
* \return -1 if fail, the number of swap otherwise.
*
* Internal edge flipping in the Lagrangian mode; only affects tetra marked with it
*
Expand Down

0 comments on commit bfaa7fa

Please sign in to comment.