]> SALOME platform Git repositories - modules/med.git/commitdiff
Salome HOME
typo-fix by Kunda V8_5_0a1
authoreap <eap@opencascade.com>
Tue, 9 Jan 2018 10:35:13 +0000 (13:35 +0300)
committereap <eap@opencascade.com>
Tue, 9 Jan 2018 10:35:13 +0000 (13:35 +0300)
http://www.salome-platform.org/forum/forum_10/195000978

doc/dev/sphinx/fr/medcalc-develguide.rst
doc/dev/sphinx/fr/medop-prototype-develguide.rst
doc/dev/sphinx/medop-prototype-develguide.rst
idl/MEDCalculator.idl

index 5fb1b0dbbbe85ba615d10a6e66a342d0e8586e6e..192c895e49523a015c8d59c62e79d3b1f04cc23d 100644 (file)
@@ -185,9 +185,9 @@ Ecrire un service CORBA qui retourne une structure CORBA:
     _fieldHandlerMap[fieldHandler->id] = fieldHandler;
 
     // >>> WARNING: CORBA struct specification indicates that the
-    // assignement acts as a desctructor for the structure that is
+    // assignment acts as a destructor for the structure that is
     // pointed to. The values of the fields are copy first in the new
-    // structure that receives the assignement and finally the initial
+    // structure that receives the assignment and finally the initial
     // structure is destroyed. In the present case, WE WANT to keep
     // the initial fieldHandler in the map. We must then make a deep
     // copy of the structure found in the map and return the copy. The
index 60e09a3b8dfcfdcbf653c05f0e6e6c743ed31333..2bd17ee851c720c889bb1b3195c20794d18345cd 100644 (file)
@@ -515,7 +515,7 @@ l'interface du servant ``SALOME_MED_MEDOP``):
     FIELD pow(in FIELD f, in long power) raises (SALOME::SALOME_Exception);
     /*! Linear transformation of the field f (factor*f+offset) */
     FIELD lin(in FIELD f, in double factor, in double offset) raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FIELD dup(in FIELD f) raises (SALOME::SALOME_Exception);
 
 Cette interface est implémentée dans la classe C++ ``MEDOP_i`` du
index 0bc2eae9048aa1c155da17f923d27cb45f9ad2c1..0172c4617b6bc871d1fb6e01e819289493dcf523 100644 (file)
@@ -515,7 +515,7 @@ l'interface du servant ``SALOME_MED_MEDOP``):
     FIELD pow(in FIELD f, in long power) raises (SALOME::SALOME_Exception);
     /*! Linear transformation of the field f (factor*f+offset) */
     FIELD lin(in FIELD f, in double factor, in double offset) raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FIELD dup(in FIELD f) raises (SALOME::SALOME_Exception);
 
 Cette interface est implémentée dans la classe C++ ``MEDOP_i`` du
index e1048322a9807589b4383400b2a914769f8e1836..73e07383fb80d8c548dc25dfe54aa51bc86d32e1 100644 (file)
@@ -56,7 +56,7 @@ module MEDCALC
     /*! Linear transformation of the field f (factor*f+offset) */
     FieldHandler lin(in FieldHandler f, in double factor, in double offset)
       raises (SALOME::SALOME_Exception);
-    /*! Dublication of the field f */
+    /*! Duplication of the field f */
     FieldHandler dup(in FieldHandler f)
       raises (SALOME::SALOME_Exception);