diff --git a/ChangeLog b/ChangeLog index d87bba056..c74ecd67a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2011-02-21 Alexandre Duret-Lutz + + * src/misc/escape.hh: Correct documentation. + 2011-02-14 Alexandre Duret-Lutz Correct tgba_explicit::compute_support_conditions. diff --git a/src/misc/escape.hh b/src/misc/escape.hh index e3754c07d..18945bb93 100644 --- a/src/misc/escape.hh +++ b/src/misc/escape.hh @@ -1,3 +1,5 @@ +// Copyright (C) 2011 Laboratoire de Recherche et Developpement de +// l'Epita (LRDE). // Copyright (C) 2004 Laboratoire d'Informatique de Paris 6 (LIP6), // département Systèmes Répartis Coopératifs (SRC), Université Pierre // et Marie Curie. @@ -30,9 +32,12 @@ namespace spot /// \addtogroup misc_tools /// @{ - /// Escape " and \ characters in \a str. + /// Escape ", \, and \n + /// characters in \a str. std::ostream& escape_str(std::ostream& os, const std::string& str); - /// Escape " and \ characters in \a str. + + /// Escape ", \, and \n + /// characters in \a str. std::string escape_str(const std::string& str); /// @}