From 05e45a1eaeb7ed6f1bce0595acb20ae22af7f12f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kirill=20M=C3=BCller?= Date: Sun, 17 Sep 2023 05:52:28 -0500 Subject: [PATCH] docs: Fix 301 in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a5489a41..c2936ff2 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ The goal of duckplyr is to provide a drop-in replacement for dplyr that uses Duc
 library(conflicted)
-library(duckplyr)
+library(duckplyr)
 conflict_prefer("filter", "duckplyr")
 #> [conflicted] Will prefer duckplyr::filter over
 #> any other package.
@@ -189,7 +189,7 @@ This example illustrates usage of duckplyr for all data frames in the R session. This package also provides generics, for which other packages may then implement methods.
-library(duckplyr)
+library(duckplyr)
 
 new_dfrel <- function(x) {
   stopifnot(is.data.frame(x))