]> AND Public Git Repository - simgrid.git/blobdiff - doc/gtut-tour-07-timers.doc
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update Changelog for MAC and Win package
[simgrid.git] / doc / gtut-tour-07-timers.doc
index e8fdcb90678b8fa6b0fdafe28fda7c0bb7ef4677..3ad42045cb0b94c161f6c743cdccdbe8ebd121d8 100644 (file)
@@ -36,7 +36,7 @@ must be function without argument nor result (<tt>void my_action(void){
 
 It is important to note that timers are not prehemptive. They will not start
 as soon as they are ready. Instead, they get served when you go into
-gras_msg_handle() (and they are served before incomming messages). This is
+gras_msg_handle() (and they are served before incoming messages). This is
 because allowing timers to run in parallel to the callbacks would add
 parallelism to the user code, which would have to protect data with mutexes.
 This is a level of complexity I really don't want for user code. If you