Salome HOME
typo-fix by Kunda
authoreap <eap@opencascade.com>
Thu, 30 Nov 2017 11:16:01 +0000 (14:16 +0300)
committereap <eap@opencascade.com>
Thu, 30 Nov 2017 11:16:01 +0000 (14:16 +0300)
http://www.salome-platform.org/forum/forum_9/370845364

README
SalomeNETGENPLUGINConfig.cmake.in
doc/salome/gui/NETGENPLUGIN/input/additional_hypo.doc
idl/NETGENPlugin_Algorithm.idl
src/NETGENPlugin/NETGENPlugin_Mesher.cxx

diff --git a/README b/README
index b55a732375bb034bd3f662b5df08b5065d15d2fb..fcc77d3a6bfa03c855557e66da8d0e911814a32a 100644 (file)
--- a/README
+++ b/README
@@ -35,8 +35,8 @@ Installation
 Pre-requisites
 --------------
 
-SALOME platform relies on a set of third-party softwares; some of them are needed
-at build time only, while other ones are needed in runtime also.
+SALOME platform relies on a set of third-party software; some of them are needed
+at build time only, while other ones are needed at runtime as well.
 
 For more information about the pre-requisites please visit SALOME platform web
 site:
index 564eb9f511b954f5aaa5da331e1f3a4b4bed4243..32a740c671d0aacea4139f381a69b6ea73cd299a 100644 (file)
@@ -1,6 +1,6 @@
 # - Config file for the @PROJECT_NAME@ package
 # It defines the following variables. 
-# Specific to the pacakge @PROJECT_NAME@ itself:
+# Specific to the package @PROJECT_NAME@ itself:
 #  @PROJECT_NAME_UC@_ROOT_DIR_EXP - the root path of the installation providing this CMake file
 #
 
index c439a3463e6329344457072460b0bb1d3e263c82..79d7845e3eb8e931527609419b4c017eac6c3b6e 100644 (file)
@@ -5,7 +5,7 @@
 \n <b>Additional Hypotheses</b> can be applied as a supplement to
 introducing additional concepts to mesh creation.
 
-Following additional hypotheses can be used together with NETGEN algoritm:
+Following additional hypotheses can be used together with NETGEN algorithm:
 <ul>
 
 <li><b>Viscous Layers</b> additional hypothesis can be used together
index a69c4f9e851a0549301f83b1d7592a4a4ac3d461..37426206161e36dda6172a5800a9122da1df7eaf 100644 (file)
@@ -136,7 +136,7 @@ module NETGENPlugin
   };
 
   /*!
-   * interface of "NETGEN 2D parameters" hypothesis used by NETGENPlugin_NETGEN_2D_ONLY algoritm
+   * interface of "NETGEN 2D parameters" hypothesis used by NETGENPlugin_NETGEN_2D_ONLY algorithm
    */
   interface NETGENPlugin_Hypothesis_2D_ONLY : NETGENPlugin_Hypothesis_2D
   {
@@ -150,7 +150,7 @@ module NETGENPlugin
   };
 
   /*!
-   * interface of "NETGEN Remesher parameters" hypothesis used by NETGENPlugin_Remesher_2D algoritm
+   * interface of "NETGEN Remesher parameters" hypothesis used by NETGENPlugin_Remesher_2D algorithm
    */
   interface NETGENPlugin_RemesherHypothesis_2D : NETGENPlugin_Hypothesis_2D
   {
index c3432246cf495d623666e2b35e4a13876fa0cbce..6d585e057f8e7d490089e7a7488087d7e74558da 100644 (file)
@@ -2324,7 +2324,7 @@ NETGENPlugin_Mesher::AddSegmentsToMesh(netgen::Mesh&                    ngMesh,
         netgen::Segment& prevSeg = ngMesh.LineSegment( i-1 );
         if ( seg[0] == prevSeg[1] && seg[1] == prevSeg[0] )
         {
-          cout << "Segment: " << seg.edgenr << endl << "\tis REVRESE of the previous one" << endl;
+          cout << "Segment: " << seg.edgenr << endl << "\tis REVERSE of the previous one" << endl;
           continue;
         }
       }
@@ -2386,8 +2386,8 @@ int NETGENPlugin_Mesher::FillSMesh(const netgen::OCCGeometry&          occgeo,
   SMESHDS_Mesh* meshDS = sMesh.GetMeshDS();
 
   // quadHelper is used for either
-  // 1) making quadratic elements when a lower dimention mesh is loaded
-  //    to SMESH before convertion to quadratic by NETGEN
+  // 1) making quadratic elements when a lower dimension mesh is loaded
+  //    to SMESH before conversion to quadratic by NETGEN
   // 2) sewing of quadratic elements with quadratic elements of sub-meshes
   if ( quadHelper && !quadHelper->GetIsQuadratic() && quadHelper->GetTLinkNodeMap().empty() )
     quadHelper = 0;