_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
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
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
/*! 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);