Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix some typos
authorMartin Quinson <martin.quinson@loria.fr>
Thu, 14 Jul 2016 20:40:16 +0000 (22:40 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Mon, 18 Jul 2016 20:31:09 +0000 (22:31 +0200)
doc/doxygen/uhood.doc
src/mc/ModelChecker.cpp

index 6a75337..b1ef22d 100644 (file)
@@ -25,7 +25,7 @@ We provide an uniform interface to them:
   (and share the same reference count).
 
 The ability to manipulate thge objects thought pointers and have the ability
-to use explicite reference count management is useful for creating C wrappers
+to use explicit reference count management is useful for creating C wrappers
 to the S4U and should play nicely with other language bindings (such as
 SWIG-based ones).
 
index 2023655..5d0e4af 100644 (file)
@@ -294,10 +294,10 @@ bool ModelChecker::handle_message(char* buffer, ssize_t size)
   return true;
 }
 
-/** Terminate the model-checker aplication */
+/** Terminate the model-checker application */
 void ModelChecker::exit(int status)
 {
-  // TODO, terminate the model checker politely instead of exiting rudel
+  // TODO, terminate the model checker politely instead of exiting rudely
   if (process().running())
     kill(process().pid(), SIGKILL);
   ::exit(status);