Skip to content
Snippets Groups Projects
Commit 112323bf authored by Guillaume Pasero's avatar Guillaume Pasero
Browse files

DOC: typos from spellcheck

parent 77f2c141
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ namespace Utils
return s.str();
}
/** Function that prints nothing (usefull to disable libsvm logs)*/
/** Function that prints nothing (useful to disable libsvm logs)*/
void OTBCommon_EXPORT PrintNothing(const char *s);
}
......
......@@ -206,7 +206,7 @@ private:
*
* This filter differ from itk::VectorRescaleIntensityImageFilter.
* Instead of setting only the OutputMaximumMagnitude, you can set the minimum and maximum values for the input and output images.
* There is also the possibilty to set a Gamma value and change the clamp percentage.
* There is also the possibility to set a Gamma value and change the clamp percentage.
*
* \ingroup IntensityImageFilters
* \ingroup MultiThreaded
......
......@@ -102,7 +102,7 @@ SarDeburstImageFilter<TImage>::GenerateOutputInformation()
origin[1]=0.5+outputOriginLine;
outputPtr->SetOrigin(origin);
// Update line records to accomodate actual input image region
// Update line records to accommodate actual input image region
LinesRecordVectorType filteredRecords;
for(LinesRecordVectorType::const_iterator it = m_LinesRecord.begin();
......
......@@ -306,13 +306,13 @@ int main(int argc, char* argv[])
LauncherType::Pointer launcher = LauncherType::New();
//if (launcher->Load(exp) == true)
bool sucess = launcher->Load(vexp) && launcher->ExecuteAndWriteOutput();
bool success = launcher->Load(vexp) && launcher->ExecuteAndWriteOutput();
// shutdown MPI after application finished
#ifdef OTB_USE_MPI
otb::MPIConfig::Instance()->terminate();
#endif
return sucess ? EXIT_SUCCESS : EXIT_FAILURE;
return success ? EXIT_SUCCESS : EXIT_FAILURE;
}
const std::string GetChildNodeTextOf(TiXmlElement *parentElement, std::string key)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment