Salome HOME
Typo-fixes by Kunda
authoreap <eap@opencascade.com>
Mon, 28 Oct 2019 10:47:37 +0000 (13:47 +0300)
committereap <eap@opencascade.com>
Mon, 28 Oct 2019 10:47:37 +0000 (13:47 +0300)
doc/dev/sphinx/medcalc-userguide-gui.rst
doc/tut/medcoupling/testmed_gendata.py
doc/tut/medloader/explore.py
idl/MEDCouplingCorbaServant.idl
src/MEDCalc/cmp/MEDCalculator_i.cxx
src/MEDCalc/tui/fieldproxy.py

index 700d24dc6d1eca2eed566d50a3b43a010dfbbb0a..831214460a4b5e8de5c1e453de5badb36a40b7a3 100644 (file)
@@ -268,7 +268,7 @@ Scalar variables can be used if needed::
  >>> r=4*f3-f4/1000
  >>> ...
 
-In theses examples, the variable ``r`` corresponds to a work field containing
+In these examples, the variable ``r`` corresponds to a work field containing
 the operation result. By default the field is nor referenced in workspace
 tree. If user wants to add it, for example to make it considered when saving,
 then the following command is used::
index 25cda4c6d00e6797d8be4d854a1b706ff81e0765..01232ce22ee460c94ebea7068a716dc426a1782e 100755 (executable)
@@ -200,7 +200,7 @@ def createTestFieldOnNodes():
 # -------------------------------------------------
 
 # In these functions, (x,y) are the indexes of the element in the
-# numpy array. Note that theses indexes maps the indexes of the
+# numpy array. Note that these indexes maps the indexes of the
 # cartesian mesh.
 
 # A function can be a simple python function ...
index cd66490a7c0bafe3f313137d18e3be0658137649..65f5128f9646a1e2ad6ecb79f28afa006ab8036d 100644 (file)
@@ -29,7 +29,7 @@ filepath = os.path.join(os.path.abspath(os.path.dirname(__file__)),filename)
 meshNames = MEDLoader.GetMeshNames(filepath)
 
 # Set to True if the meshes and fields data must be loaded. Otherwise,
-# only theire descriptions will be loaded.
+# only their descriptions will be loaded.
 READ_PHYSICAL_DATA=False
 
 for meshName in meshNames:
index f86939def64cf0585171ba2673014b73d0ecd80c..844da8568e1018bf3406ec7e8e7a6c46e81dc1d5 100644 (file)
@@ -58,7 +58,7 @@ module SALOME_MED
   interface MEDCouplingMeshCorbaInterface : MEDCouplingRefCountCorbaInterface
   {
     string getName();
-    //!CORBA inplementation of MEDCouplingPointSet::getTinySerializationInformation
+    //!CORBA implementation of MEDCouplingPointSet::getTinySerializationInformation
     void getTinyInfo(out SALOME_TYPES::ListOfDouble da, out SALOME_TYPES::ListOfLong la, out SALOME_TYPES::ListOfString sa);
     void getSerialisationData(out SALOME_TYPES::ListOfLong la, out SALOME_TYPES::ListOfDouble da);
   };
index 740ec5a3f8fb7c8ba695144b1291b1c735a26bd9..b0da2ba33f3b249ea5661f1b0cf2783b8a23f533 100644 (file)
@@ -347,7 +347,7 @@ MEDCALC::FieldHandler * MEDCalculator_i::dup(const MEDCALC::FieldHandler & f_hdl
 /*!
  * This creates a new field by applying a function on the specified
  * field. The function is defined by a string of characters
- * (function), that specifies the litteral equation to apply, and an
+ * (function), that specifies the literal equation to apply, and an
  * integer (nbcomponents), that specifies the number of components to
  * consider in the resulting field. This is to mimic the interface of
  * MEDCouplingFieldDouble::applyFunc.
index c9c2b3bf9cede1dd057abc3c44037a3db1a4ccc3..2fa6c33989fea46dd0d29eb6812581570afdac96 100644 (file)
@@ -102,7 +102,7 @@ class FieldProxy:
     handler.
     """
     # WRN: Note that the modification of this function can lead to
-    # coercion problem. Modify this function with extrem care.
+    # coercion problem. Modify this function with extreme care.
     return getattr( self.__fieldHandler, name )
   #
   def __setattr__(self, name, value):
@@ -163,7 +163,7 @@ class FieldProxy:
     # choose to not raise the possible exceptions to the console
     # by a clear message. Keep this in mind for unit test. You
     # have to test the return value, which should not be
-    # null. This principle is applyed for all operations.
+    # null. This principle is applied for all operations.
     try:
       if isinstance(operande, FieldProxy):
         # The operande is an other field