Carry a a verbosity default already in the connection object
Change-Id: I8b0b0cb3ebbf5d92be8442366b5aaf6643e9431c
diff --git a/man/KorAPConnection-class.Rd b/man/KorAPConnection-class.Rd
index 2c4c60e..54f6468 100644
--- a/man/KorAPConnection-class.Rd
+++ b/man/KorAPConnection-class.Rd
@@ -10,7 +10,7 @@
\usage{
\S4method{initialize}{KorAPConnection}(.Object,
KorAPUrl = "https://korap.ids-mannheim.de/", apiVersion = "v1.0",
- apiUrl)
+ apiUrl, verbose = FALSE)
\S4method{show}{KorAPConnection}(object)
}
@@ -23,6 +23,8 @@
\item{apiUrl}{URL of the KorAP web service.}
+\item{verbose}{logical decides wether following operations will default to be verbose}
+
\item{object}{KorAPConnection object}
}
\value{
@@ -36,8 +38,8 @@
Currently it is not possible to authenticate the client
}
\examples{
-kcon <- new("KorAPConnection")
+kcon <- new("KorAPConnection", verbose = TRUE)
kq <- corpusQuery(kcon, "Ameisenplage")
-kq <- fetchAll(kq, verbose=TRUE)
+kq <- fetchAll(kq)
}