From: Bruno Turcksin Date: Thu, 8 Aug 2013 14:52:38 +0000 (+0000) Subject: Fix typos in the glossary. X-Git-Tag: v8.1.0~1115 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c835cc7a5ef8f821c7d8629f3c55c6ea6cbb2440;p=dealii.git Fix typos in the glossary. git-svn-id: https://svn.dealii.org/trunk@30257 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/doc/doxygen/headers/glossary.h b/deal.II/doc/doxygen/headers/glossary.h index 2f11c18f66..c9a106b569 100644 --- a/deal.II/doc/doxygen/headers/glossary.h +++ b/deal.II/doc/doxygen/headers/glossary.h @@ -1215,7 +1215,7 @@ Article{JK10, * // in 3d * for (cell=dof_handler.begin_active(); * cell!=dof_handler.end(); ++cell) - * for (unsigned int line=0; line::lines_per_cell; ++l) + * for (unsigned int l=0; l::lines_per_cell; ++l) * if (cell->line(l)->at_boundary()) * { * do something with this line @@ -1271,7 +1271,7 @@ Article{JK10, * @code * for (cell=dof_handler.begin_active(); * cell!=dof_handler.end(); ++cell) - * for (unsigned int line=0; line::lines_per_cell; ++l) + * for (unsigned int l=0; l::lines_per_cell; ++l) * if (cell->line(l)->at_boundary()) * { * cell->line(l)->set_user_index(42);