* src/tgba/bddprint.hh: Typo in Doxygen comment.

This commit is contained in:
Alexandre Duret-Lutz 2013-04-04 12:06:20 +02:00
parent 12d369fc30
commit 8896c3d5da

View file

@ -1,6 +1,9 @@
// Copyright (C) 2003, 2004, 2012 Laboratoire d'Informatique de Paris 6 (LIP6), // -*- coding: utf-8 -*-
// département Systèmes Répartis Coopératifs (SRC), Université Pierre // Copyright (C) 2012, 2013 Laboratoire de Recherche et Développement
// et Marie Curie. // de l'Epita (LRDE).
// Copyright (C) 2003, 2004 Laboratoire d'Informatique de
// Paris 6 (LIP6), département Systèmes Répartis Coopératifs (SRC),
// Université Pierre et Marie Curie.
// //
// This file is part of Spot, a model checking library. // This file is part of Spot, a model checking library.
// //
@ -120,7 +123,7 @@ namespace spot
/// \param b The BDD to print. /// \param b The BDD to print.
/// \return The BDD formated as a string. /// \return The BDD formated as a string.
std::string std::string
bdd_format_isop(const bdd_dict* d, bdd b); bdd_format_isop(const bdd_dict* dict, bdd b);
/// \brief Print a BDD as an irredundant sum of product. /// \brief Print a BDD as an irredundant sum of product.
@ -128,7 +131,7 @@ namespace spot
/// \param dict The dictionary to use, to lookup variables. /// \param dict The dictionary to use, to lookup variables.
/// \param b The BDD to print. /// \param b The BDD to print.
std::ostream& std::ostream&
bdd_print_isop(std::ostream& os, const bdd_dict* d, bdd b); bdd_print_isop(std::ostream& os, const bdd_dict* dict, bdd b);
} }