Skip to content

Commit 38395a0

Browse files
luzpazdzenanz
authored andcommitted
DOC: Fix typos in Modules/Numerics
Found via `codespell -q 3 -S ./Modules/ThirdParty,./Documentation/ReleaseNotes -L ans,ba,boun,childrens,developpement,dum,fiter,inout,ist,nd,normaly,numer,ot,positionn,pullrequest,reson,serie,te,unser` Signed-off-by: luz paz <luzpaz@github.com>
1 parent 28325d9 commit 38395a0

57 files changed

Lines changed: 95 additions & 95 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Modules/Numerics/Eigen/include/itkEigenAnalysis2DImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ EigenAnalysis2DImageFilter<TInputImage, TEigenValueImage, TEigenVectorImage>::Ge
119119

120120
/**
121121
* Make Output
122-
* \todo Verify that MakeOutput is createing the right type of objects
122+
* \todo Verify that MakeOutput is creating the right type of objects
123123
* this could be the cause of the reinterpret_cast bug in this class
124124
*/
125125
template <typename TInputImage, typename TEigenValueImage, typename TEigenVectorImage>

Modules/Numerics/FEM/include/itkFEMElementBase.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ class ITKFEM_EXPORT Element : public FEMLightObject
329329
* a
330330
*
331331
* where (rho c) is constant (element density), which is here assumed to be
332-
* equal to one. If this is not the case, this function must be overriden in
332+
* equal to one. If this is not the case, this function must be overridden in
333333
* a derived class. Implementation is similar to GetStiffnessMatrix.
334334
*/
335335
virtual void
@@ -706,7 +706,7 @@ class ITKFEM_EXPORT Element : public FEMLightObject
706706
* equal to number of unknowns that we want to solve for at each point
707707
* within an element.
708708
*
709-
* \note This function must be overriden in all derived classes.
709+
* \note This function must be overridden in all derived classes.
710710
*/
711711
virtual unsigned int
712712
GetNumberOfDegreesOfFreedomPerNode() const = 0;

Modules/Numerics/FEM/include/itkFEMElementStd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class ITK_TEMPLATE_EXPORT ElementStd : public TBaseClass
6565
/** Run-time type information (and related methods). */
6666
itkTypeMacro(ElementStd, TBaseClass);
6767

68-
// FIXME: Add concept cheking for TBaseClass, and TPointClass
68+
// FIXME: Add concept checking for TBaseClass, and TPointClass
6969

7070
// Repeat type alias and enums from parent class
7171

Modules/Numerics/FEM/include/itkFEMException.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class ITK_ABI_EXPORT FEMException : public itk::ExceptionObject
6060

6161
/**
6262
* \class FEMExceptionIO
63-
* \brief Base class for all IO exception's that can occur within FEM classe.
63+
* \brief Base class for all IO exception's that can occur within FEM classes.
6464
*
6565
* This class is normally used when reading or writing objects from/to stream.
6666
* \ingroup ITKFEM

Modules/Numerics/FEM/include/itkFEMLinearSystemWrapperItpack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ class ITKFEM_EXPORT LinearSystemWrapperItpack : public LinearSystemWrapper
339339

340340
/**
341341
* Set ??
342-
* \param i smalles jacobian eigenvalue estimate
342+
* \param i smallest jacobian eigenvalue estimate
343343
*/
344344
void
345345
SetSmallestJacobiEigenvalueEstimate(double i)

Modules/Numerics/FEM/include/itkFEMLoadElementBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace fem
3838
*
3939
* Ultimately, when assembling the right hand side of the master equation (master force vector)
4040
* the Element's Fe() member function is called with the pointer to the LoadElement class that is
41-
* prescribed on that element. Fe() function shuld dynamically cast this pointer to specific
41+
* prescribed on that element. Fe() function should dynamically cast this pointer to specific
4242
* load class, which it can handle and return the element's force vector.
4343
* \ingroup ITKFEM
4444
*/

Modules/Numerics/FEM/include/itkFEMMaterialBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace fem
3838
* special properties or constants.
3939
*
4040
* Material base class doesn't define any data member.
41-
* Everything useful is stored in derived clases. This class
41+
* Everything useful is stored in derived classes. This class
4242
* is here just to group all material classes together and access
4343
* them via this base class.
4444
* \ingroup ITKFEM

Modules/Numerics/FEM/include/itkFEMObject.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ FEMObject<VDimension>::GenerateGFN()
391391
// all
392392
// elements
393393
{
394-
// Add the elemens in the nodes list of elements
394+
// Add the elements in the nodes list of elements
395395
// FIXME: should be removed once Mesh is there
396396
Element::Pointer el = this->GetElement(e);
397397
unsigned int Npts = el->GetNumberOfNodes();

Modules/Numerics/FEM/include/itkFEMRobustSolver.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ class ITK_TEMPLATE_EXPORT RobustSolver : public Solver<VDimension>
312312
RescaleLandmarkStiffnessMatrix(double oldPointTensorPonderation);
313313

314314
/**
315-
* Calculate KU, which will be added on the righ hand side to reach
315+
* Calculate KU, which will be added on the right hand side to reach
316316
* the effect of zeroing mesh energy
317317
*/
318318
void

Modules/Numerics/FEM/include/itkFEMRobustSolver.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ RobustSolver<VDimension>::InitializeInterpolationGrid()
10451045
// Step over all points within the region
10461046
for (iter.GoToBegin(); !iter.IsAtEnd(); ++iter)
10471047
{
1048-
// Note: Iteratior is guarantied to be within image, since the
1048+
// Note: Iterator is guaranteed to be within image, since the
10491049
// elements with BB outside are skipped before.
10501050
this->m_InterpolationGrid->TransformIndexToPhysicalPoint(iter.GetIndex(), pt);
10511051
for (FEMIndexType d = 0; d < NumberOfDimensions; ++d)

0 commit comments

Comments
 (0)