Remove repetition of "as well"

Fixes #983
This commit is contained in:
Jonathan Wakely 2017-07-20 12:39:15 +01:00
parent bf7d7da165
commit 498eb97dd2

View File

@ -2885,7 +2885,7 @@ This makes it clear to callers that the object is assumed to be modified.
##### Note
A `T&` argument can pass information into a function as well as well as out of it.
A `T&` argument can pass information into a function as well as out of it.
Thus `T&` could be an in-out-parameter. That can in itself be a problem and a source of errors:
void f(string& s)