More migrations to base pipe

Change-Id: I37fa2e38c80c82827b7ad234a8058c8efbb2dca4
diff --git a/man/collocationAnalysis-KorAPConnection-method.Rd b/man/collocationAnalysis-KorAPConnection-method.Rd
index 1554ff7..50f4a27 100644
--- a/man/collocationAnalysis-KorAPConnection-method.Rd
+++ b/man/collocationAnalysis-KorAPConnection-method.Rd
@@ -101,9 +101,9 @@
 \dontrun{
 
  # Find top collocates of "Packung" inside and outside the sports domain.
- KorAPConnection(verbose = TRUE) \%>\%
+ KorAPConnection(verbose = TRUE) |>
   collocationAnalysis("Packung", vc=c("textClass=sport", "textClass!=sport"),
-                      leftContextSize=1, rightContextSize=1, topCollocatesLimit=20) \%>\%
+                      leftContextSize=1, rightContextSize=1, topCollocatesLimit=20) |>
   dplyr::filter(logDice >= 5)
 }
 
@@ -111,7 +111,7 @@
 
 # Identify the most prominent light verb construction with "in ... setzen".
 # Note that, currently, the use of focus function disallows exactFrequencies.
-KorAPConnection(verbose = TRUE) \%>\%
+KorAPConnection(verbose = TRUE) |>
   collocationAnalysis("focus(in [tt/p=NN] {[tt/l=setzen]})",
     leftContextSize=1, rightContextSize=0, exactFrequencies=FALSE, topCollocatesLimit=20)
 }