Fix various typos and grammatical refinements

This commit is contained in:
luz paz
2021-12-08 15:47:13 -05:00
committed by Chris Hennes
parent 5575ae5e09
commit 430aadb791
6 changed files with 12 additions and 12 deletions

View File

@@ -58,7 +58,7 @@ namespace Sketcher {
* Internal and external geometries are present in a single geometry vector one after the other.
*
* N.B.: Note that the index of the geomlist (all layers) and the GeoId can be converted
* from each other at needed using the member fuctions (and sometimes the statics).
* from each other at needed using the member functions (and sometimes the statics).
*/
template <typename T>
class GeoListModel {

View File

@@ -102,7 +102,7 @@ void GeometryFacade::initExtension()
void GeometryFacade::initExtension() const
{
// const Geometry without SketchGeometryExtension cannot initiliase a GeometryFacade
// const Geometry without SketchGeometryExtension cannot initialise a GeometryFacade
assert(Geo->hasExtension(SketchGeometryExtension::getClassTypeId()));
auto ext = std::static_pointer_cast<const SketchGeometryExtension>(Geo->getExtension(SketchGeometryExtension::getClassTypeId()).lock());