From: turcksin Date: Thu, 8 Aug 2013 14:52:38 +0000 (+0000) Subject: Fix typos in the glossary. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a68d36948c9e1ed8154384234dd919753243260f;p=dealii-svn.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);