Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:simgrid/simgrid into dev_12
[simgrid.git] / src / mc / mc_record.hpp
index 1cc96be..39d960e 100644 (file)
@@ -5,9 +5,9 @@
 
 /** \file mc_record.hpp
  *
- *  This file contains the MC replay/record functionnality.
+ *  This file contains the MC replay/record functionality.
  *  The recorded path is written in the log output and can be replayed with MC disabled
- *  (even with an non-MC build) using `--cfg=model-check/replay:$replayPath`.
+ *  (even with a non-MC build) using `--cfg=model-check/replay:$replayPath`.
  *
  *  The same version of Simgrid should be used and the same arguments should be
  *  passed to the application (without the MC specific arguments).
@@ -25,9 +25,9 @@
 namespace simgrid {
 namespace mc {
 
-typedef std::vector<Transition> RecordTrace;
+using RecordTrace = std::vector<Transition>;
 
-/** Convert a string representation of the path into a array of `simgrid::mc::Transition`
+/** Convert a string representation of the path into an array of `simgrid::mc::Transition`
  */
 XBT_PRIVATE RecordTrace parseRecordTrace(const char* data);
 XBT_PRIVATE std::string traceToString(simgrid::mc::RecordTrace const& trace);