Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
clang-format
[simgrid.git] / include / simgrid / simix.hpp
index 9e3ec63a77c61c1da0ff74353d528e35e2e24740..399d63fd22363e817ac063df7f5e2ef27ee83cac 100644 (file)
@@ -1,5 +1,4 @@
-/* Copyright (c) 2007-2022. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2007-2023. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -64,7 +63,7 @@ template <class F> typename std::result_of_t<F()> simcall_answered(F&& code, Sim
  *
  * Simulation without MC and without parallelism (contexts/nthreads=1) will not pay the price of a simcall for an
  * harmless setter. When running in parallel, you want your write access to be done in a mutual exclusion way, while the
- * getters can still occure out of order.
+ * getters can still occur out of order.
  *
  * When running in MC, you want to make this access visible to the checker. Actually in this case, it's not visible from
  * the checker (and thus still use a fast track) if the setter is called from the actor that created the object.