From: luz paz <luzpaz@pm.me>
Date: Thu, 1 Dec 2022 00:02:46 +0000 (-0500)
Subject: Fix typos in source function name
X-Git-Tag: v9.5.0-rc1~777^2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14512%2Fhead;p=dealii.git

Fix typos in source function name

s/Asser/Assert/
---

diff --git a/include/deal.II/lac/trilinos_solver.h b/include/deal.II/lac/trilinos_solver.h
index fa1bec2fc8..2bb8a34379 100644
--- a/include/deal.II/lac/trilinos_solver.h
+++ b/include/deal.II/lac/trilinos_solver.h
@@ -1234,7 +1234,7 @@ namespace TrilinosWrappers
                      Teuchos::SerialDenseMatrix<int, value_type> &,
                      const bool = false)
       {
-        Asser(false, ExcNotImplemented());
+        Assert(false, ExcNotImplemented());
       }
 
       virtual int
@@ -1242,7 +1242,7 @@ namespace TrilinosWrappers
         Teuchos::SerialDenseMatrix<int, value_type> &,
         const typename Teuchos::ScalarTraits<value_type>::magnitudeType &)
       {
-        Asser(false, ExcNotImplemented());
+        Assert(false, ExcNotImplemented());
       }
 
 #      endif