From: Martin Quinson Date: Tue, 8 Jan 2019 13:30:51 +0000 (+0100) Subject: tiny doc improvement X-Git-Tag: v3_22~641 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e6ec84fd6221e0951ee677e78a2f0a4b25ff38ca?hp=a176b701c8a240c3eecc1b020e77333f1f6d3ba8 tiny doc improvement --- diff --git a/src/bindings/python/simgrid_python.cpp b/src/bindings/python/simgrid_python.cpp index 23cf09f74e..21cd88c608 100644 --- a/src/bindings/python/simgrid_python.cpp +++ b/src/bindings/python/simgrid_python.cpp @@ -71,7 +71,7 @@ PYBIND11_MODULE(simgrid, m) m2.def("suspend", &simgrid::s4u::this_actor::suspend, "Suspend the current actor, that is blocked until resume()ed by another actor. see :cpp:func:`void simgrid::s4u::this_actor::suspend`"); m2.def("yield_", &simgrid::s4u::this_actor::yield, "Yield the actor, see :cpp:func:`void simgrid::s4u::this_actor::yield()`"); - m2.def("exit", &simgrid::s4u::this_actor::exit); + m2.def("exit", &simgrid::s4u::this_actor::exit, "kill the current actor"); /* Class Engine */ py::class_(m, "Engine", "Simulation Engine, see :ref:`class s4u::Engine `") diff --git a/src/mc/Session.cpp b/src/mc/Session.cpp index 20fafe1b80..7959e9f7df 100644 --- a/src/mc/Session.cpp +++ b/src/mc/Session.cpp @@ -1,5 +1,4 @@ -/* Copyright (c) 2015-2019. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2015-2019. 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. */