From 05f53c41e4b66ea28274504ac4fec236f0c45d40 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 27 Feb 2014 00:16:26 +0000 Subject: [PATCH] Fix documentation in a number of places (pointed out by Jean Ragusa). git-svn-id: https://svn.dealii.org/trunk@32563 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/trilinos_vector_base.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/include/deal.II/lac/trilinos_vector_base.h b/deal.II/include/deal.II/lac/trilinos_vector_base.h index 3ed409cd87..55319da91b 100644 --- a/deal.II/include/deal.II/lac/trilinos_vector_base.h +++ b/deal.II/include/deal.II/lac/trilinos_vector_base.h @@ -1,7 +1,7 @@ // --------------------------------------------------------------------- // $Id$ // -// Copyright (C) 2008 - 2013 by the deal.II authors +// Copyright (C) 2008 - 2014 by the deal.II authors // // This file is part of the deal.II library. // @@ -621,7 +621,7 @@ namespace TrilinosWrappers const TrilinosScalar *values); /** - * A collective add operation: This funnction adds a whole set of values + * A collective add operation: This function adds a whole set of values * stored in @p values to the vector components specified by @p indices. */ void add (const std::vector &indices, @@ -679,13 +679,13 @@ namespace TrilinosWrappers const bool allow_different_maps = false); /** - * Simple addition of a multiple of a vector, i.e. *this = a*V. + * Simple addition of a multiple of a vector, i.e. *this += a*V. */ void add (const TrilinosScalar a, const VectorBase &V); /** - * Multiple addition of scaled vectors, i.e. *this = a*V + b*W. + * Multiple addition of scaled vectors, i.e. *this += a*V + b*W. */ void add (const TrilinosScalar a, const VectorBase &V, @@ -1375,7 +1375,7 @@ namespace TrilinosWrappers // use pre-allocated vector for non-local entries if it exists for // addition operation const TrilinosWrappers::types::int_type my_row = nonlocal_vector->Map().LID(static_cast(row)); - Assert(my_row != -1, + Assert(my_row != -1, ExcMessage("Attempted to write into off-processor vector entry " "that has not be specified as being writable upon " "initialization")); -- 2.39.5