From: Daniel Arndt Date: Fri, 18 Oct 2019 14:48:33 +0000 (-0400) Subject: Update examples/step-13/step-13.cc X-Git-Tag: v9.2.0-rc1~966^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a5e7cb17004c2646d847b6437d4e5cf1c48128c;p=dealii.git Update examples/step-13/step-13.cc Co-Authored-By: Wolfgang Bangerth --- diff --git a/examples/step-13/step-13.cc b/examples/step-13/step-13.cc index 71cf392ecb..c80a6ca6eb 100644 --- a/examples/step-13/step-13.cc +++ b/examples/step-13/step-13.cc @@ -795,7 +795,7 @@ namespace Step13 // the lambda function. The fixed values are passed into the lambda // function using the capture list (`[...]`). It is possible to use a // capture default or to list all the variables that are to be bound to - // the lambda explicitly. For the sake of clarity we decided to to omit + // the lambda explicitly. For the sake of clarity we decided to omit // the capture default here, but that capture list could equally well be // `[&]` meaning that all used variables are copied into the lambda by // reference.