diff --git a/NAMESPACE b/NAMESPACE
index f1a5736..a3a2873 100644
--- a/NAMESPACE
+++ b/NAMESPACE
@@ -33,7 +33,3 @@ export(where)
export(with_vars)
import(rlang)
importFrom(glue,glue)
-importFrom(rlang,enquo)
-importFrom(rlang,quo)
-importFrom(rlang,quo_name)
-importFrom(rlang,quos)
diff --git a/man/faq-external-vector.Rd b/man/faq-external-vector.Rd
index 789b48a..4631f22 100644
--- a/man/faq-external-vector.Rd
+++ b/man/faq-external-vector.Rd
@@ -38,7 +38,8 @@ external object.
\if{html}{\out{
}}\preformatted{vars <- c("cyl", "am", "vs")
result <- mtcars \%>\% select(vars)
-#> Warning: Using an external vector in selections was deprecated in tidyselect 1.1.0.
+#> Warning: Using an external vector in selections was deprecated in tidyselect
+#> 1.1.0.
#> i Please use `all_of()` or `any_of()` instead.
#> # Was:
#> data \%>\% select(vars)
@@ -46,10 +47,11 @@ result <- mtcars \%>\% select(vars)
#> # Now:
#> data \%>\% select(all_of(vars))
#>
-#> See .
+#> See
+#> .
#> This warning is displayed once every 8 hours.
-#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
-#> generated.
+#> Call `lifecycle::last_lifecycle_warnings()` to see where this
+#> warning was generated.
}\if{html}{\out{
}}
We have decided to deprecate this particular approach to using external
diff --git a/man/faq-selection-context.Rd b/man/faq-selection-context.Rd
index 6702747..d418979 100644
--- a/man/faq-selection-context.Rd
+++ b/man/faq-selection-context.Rd
@@ -13,20 +13,23 @@ Using a selection helper anywhere else results in an error:
\if{html}{\out{}}\preformatted{starts_with("foo")
#> Error:
#> ! `starts_with()` must be used within a *selecting* function.
-#> i See for
-#> details.
+#> i See
+#>
+#> for details.
mtcars[contains("foo")]
#> Error:
#> ! `contains()` must be used within a *selecting* function.
-#> i See for
-#> details.
+#> i See
+#>
+#> for details.
subset(mtcars, select = matches("foo"))
#> Error:
#> ! `matches()` must be used within a *selecting* function.
-#> i See for
-#> details.
+#> i See
+#>
+#> for details.
}\if{html}{\out{
}}
If you see this error, you may have used a selection helper in the wrong