Salome HOME
Merge 'master' branch into 'V9_dev' branch.
[modules/med.git] / doc / dev / sphinx / fr / medcalc-develguide.rst
index 0037c72160763745c6023069ba77b06f2fb44df6..42289dc84d5bbf7e6e40684312c630808b796d95 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