From: Krishnakumar Gopalakrishnan Date: Wed, 8 Jan 2020 15:15:54 +0000 (+0000) Subject: In Step-5 tutorial, updates name of function being removed (make_grid_and_dofs -... X-Git-Tag: v9.2.0-rc1~718^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f9c590f1e225d343e27bb8e6b343529c0f4b041;p=dealii.git In Step-5 tutorial, updates name of function being removed (make_grid_and_dofs -> make_grid) --- diff --git a/examples/step-5/step-5.cc b/examples/step-5/step-5.cc index 24d6b9a6af..a9d864aa4d 100644 --- a/examples/step-5/step-5.cc +++ b/examples/step-5/step-5.cc @@ -63,7 +63,7 @@ using namespace dealii; // @sect3{The Step5 class template} // The main class is mostly as in the previous example. The most visible -// change is that the function make_grid_and_dofs has been +// change is that the function make_grid has been // removed, since creating the grid is now done in the run // function and the rest of its functionality is now in // setup_system. Apart from this, everything is as before.