Skip to content

Commit b69598e

Browse files
jamesobutlerdzenanz
authored andcommitted
DOC: Fix possessive "its" usage
Possessive "Its" Correct: "Its class does something" Contraction "It's" means "It is" Correct: "It's correct to assume that something"
1 parent c463547 commit b69598e

37 files changed

+53
-53
lines changed

CMake/ITKModuleRemote.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ function(itk_fetch_module _name _description)
178178
if(NOT DEFINED Module_${_name} )
179179
option(Module_${_name} "(Remote-${MODULE_COMPLIANCE_LEVEL}) ${_description}" OFF)
180180
else()
181-
# If Module_${_name} is set manually, put it's value in the CACHE
181+
# If Module_${_name} is set manually, put its value in the CACHE
182182
option(Module_${_name} "(Remote-${MODULE_COMPLIANCE_LEVEL}) ${_description}" ${Module_${_name}})
183183
endif()
184184

Documentation/ITK5MigrationGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ point-based SpatialObjects, it is the inherent space in which the Point coordina
318318
extracted from an Image, the parameters/coordinates of the SpatialObject are the space as the physical space of the source Image. Any
319319
children of a SpatialObject are defined within the ObjectSpace of that parent SpatialObject.
320320

321-
* ObjectToParent transform is the transform applied to move a SpatialObject within it's parent object's ObjectSpace. An ObjectToParent
321+
* ObjectToParent transform is the transform applied to move a SpatialObject within its parent object's ObjectSpace. An ObjectToParent
322322
transform is an invertible affine transform. It is used to, for example, align a SpatialObject with a parent image (e.g., if an object
323323
is extracted from one ImageSpatialObject but then aligned to and made a child of another ImageSpatialObject as is needed for atlas-based
324324
image segmentation or for image-to-image registration). If an object does not have a parent, then its ObjectToParent transform

Documentation/ReleaseNotes/3.12.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,10 +1165,10 @@ Changes in this Release
11651165
STYLE: according to kwstyle.
11661166

11671167
Code/Common/itkImageBase
1168-
BUG: 8490: ImageBase::Initialized method modifies it's MTime requiring pipelines to re-executed. Added InitializeBufferedRegion method which does not call Modify as a protected method
1168+
BUG: 8490: ImageBase::Initialized method modifies its MTime requiring pipelines to re-executed. Added InitializeBufferedRegion method which does not call Modify as a protected method
11691169

11701170
Code/Common/itkImageBase
1171-
BUG: 8490: ImageBase::Initialized method modifies it's MTime requiring pipelines to re-executed. Added InitializeBufferedRegion method which does not call Modify as a protected method
1171+
BUG: 8490: ImageBase::Initialized method modifies its MTime requiring pipelines to re-executed. Added InitializeBufferedRegion method which does not call Modify as a protected method
11721172

11731173
Code/Common/itkImageRandomNonRepeatingConstIteratorWithIndex
11741174
STYLE: according to kwstyle.

Documentation/ReleaseNotes/3.18.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,11 +421,11 @@ Changes in this Release
421421
STYLE: Removing unnecessary semicolon after the closing bracket of the destructor method.
422422

423423
Code/Common/itkImageBase
424-
BUG: 10008 added check to determin if the requested region was zero, if so then the filter is not called to be updated since no data is being requested. This enables streaming of JoinSeriesImageFilter with out having all of it's inputs being updated.
424+
BUG: 10008 added check to determin if the requested region was zero, if so then the filter is not called to be updated since no data is being requested. This enables streaming of JoinSeriesImageFilter with out having all of its inputs being updated.
425425

426426
Code/Common/itkImageBase
427427
BUG: Failure on my part to correctly apply: !(A || B) => !A && !B to disable warnings int UpdateOutputData
428-
BUG: 10008 added check to determin if the requested region was zero, if so then the filter is not called to be updated since no data is being requested. This enables streaming of JoinSeriesImageFilter with out having all of it's inputs being updated.
428+
BUG: 10008 added check to determin if the requested region was zero, if so then the filter is not called to be updated since no data is being requested. This enables streaming of JoinSeriesImageFilter with out having all of its inputs being updated.
429429

430430
Code/Common/itkImageFunction
431431
ENH: Changed some signed long to a cleaner IndexValueType + replaced some hand constructed floor by itk::Math::Floor

Modules/Core/Common/include/itkDataObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ class ITK_FORCE_EXPORT_MACRO(ITKCommon) DataObject : public Object
408408
* a derived class is assumed to call its source's
409409
* ProcessObject::UpdateOutputInformation() which determines modified
410410
* times, LargestPossibleRegions, and any extra meta data like spacing,
411-
* origin, etc. Default implementation simply call's it's source's
411+
* origin, etc. Default implementation simply calls its source's
412412
* UpdateOutputInformation(). */
413413
virtual void
414414
UpdateOutputInformation();

Modules/Core/Common/include/itkGaussianDerivativeOperator.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ GaussianDerivativeOperator<TPixel, VDimension, TAllocator>::GenerateGaussianCoef
127127
if (coeff[i] < sum.GetSum() * NumericTraits<double>::epsilon())
128128
{
129129
// if the coeff is less then this value then the value of cap
130-
// will not change, and it's will not contribute to the operator
130+
// will not change, and it will not contribute to the operator
131131
itkWarningMacro("Kernel failed to accumulate to approximately one with current remainder "
132132
<< cap - sum.GetSum() << " and current coefficient " << coeff[i] << ".");
133133

Modules/Core/Common/include/itkImageBase.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ class ITK_TEMPLATE_EXPORT ImageBase : public DataObject
820820
DirectionType m_IndexToPhysicalPoint{ DirectionType::GetIdentity() };
821821
DirectionType m_PhysicalPointToIndex{ DirectionType::GetIdentity() };
822822

823-
/** Restores the buffered region to it's default state
823+
/** Restores the buffered region to its default state
824824
* This method does not call Modify because Initialization is
825825
* called by ReleaseData and can not modify the MTime
826826
* \sa ReleaseData, Initialize, SetBufferedRegion */

Modules/Core/Common/include/itkResourceProbesCollectorBase.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ ResourceProbesCollectorBase<TProbe>::Report(const char * name,
107107
auto pos = this->m_Probes.find(tid);
108108
if (pos == this->m_Probes.end())
109109
{
110-
os << "The probe \"" << name << "\" does not exist. It's report is not available" << std::endl;
110+
os << "The probe \"" << name << "\" does not exist. Its report is not available" << std::endl;
111111
return;
112112
}
113113

@@ -162,7 +162,7 @@ ResourceProbesCollectorBase<TProbe>::ExpandedReport(const char * name,
162162
auto pos = this->m_Probes.find(tid);
163163
if (pos == this->m_Probes.end())
164164
{
165-
os << "The probe \"" << name << "\" does not exist. It's report is not available" << std::endl;
165+
os << "The probe \"" << name << "\" does not exist. Its report is not available" << std::endl;
166166
return;
167167
}
168168

Modules/Core/Common/src/itkTBBMultiThreader.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ TBBMultiThreader::SingleMethodExecute()
8383
// value onto active head of the FIFO stack for 'max_allowed_parallelism'
8484
// type, and destruction of the "global_control" object pops
8585
// the 'max_allowed_parallelism' type and returns the active value
86-
// to it's original state.
86+
// to its original state.
8787
tbb::global_control l_SingleMethodExecute_tbb_global_context(
8888
tbb::global_control::max_allowed_parallelism,
8989
std::min<int>(tbb_utility::get_default_num_threads(), m_MaximumNumberOfThreads));

Modules/Core/QuadEdgeMesh/include/itkGeometricalQuadEdge.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace itk
4545
* and QEDual of \ref QuadEdgeMesh identical and would prevent any algorithm
4646
* requiring to distinguish those types (e.g. by relying on a
4747
* dynamic_cast<QEType*>) to be effective. This justifies the existence of
48-
* last dummy template parameter and it's default value.
48+
* last dummy template parameter and its default value.
4949
*
5050
* \author Alexandre Gouaillard, Leonardo Florez-Valencia, Eric Boix
5151
*

0 commit comments

Comments
 (0)