From: Bruno Turcksin Date: Thu, 2 Aug 2018 14:40:39 +0000 (+0000) Subject: Fix a typo X-Git-Tag: v9.1.0-rc1~825^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8733bb676105357c522d2826b5dcc41714c34c32;p=dealii.git Fix a typo --- diff --git a/source/lac/cuda_vector.cu b/source/lac/cuda_vector.cu index c94d1b011e..1809c51f6f 100644 --- a/source/lac/cuda_vector.cu +++ b/source/lac/cuda_vector.cu @@ -183,7 +183,7 @@ namespace LinearAlgebra Vector & Vector::operator=(const Number s) { - Assert(s == Number(), ExcMessage("Onlyt 0 can be assigned to a vector.")); + Assert(s == Number(), ExcMessage("Only 0 can be assigned to a vector.")); (void)s; cudaError_t error_code = cudaMemset(val, 0, n_elements * sizeof(Number));