From b7097c77e281825b2cd2635261581f53d63a2147 Mon Sep 17 00:00:00 2001 From: Ari Lamstein Date: Thu, 29 Feb 2024 15:44:08 -0800 Subject: [PATCH] Update namespace.Rmd Fix typo. --- vignettes/namespace.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/namespace.Rmd b/vignettes/namespace.Rmd index b040ccc8a..a37a687b1 100644 --- a/vignettes/namespace.Rmd +++ b/vignettes/namespace.Rmd @@ -20,7 +20,7 @@ This is a little frustrating at first, but soon becomes second-nature. ## Exports In order for your users to use a function[^1] in your package, you must **export** it. -In most cases, you can just use the `@export` tag, and roxygen2 will automatically figure out which `NAMESPACE` directive (i.e. `export()`, `exportS3method()`, `exportClasses()`, or`exportMethods()`) you need. +In most cases, you can just use the `@export` tag, and roxygen2 will automatically figure out which `NAMESPACE` directive (i.e. `export()`, `exportS3method()`, `exportClasses()`, or `exportMethods()`) you need. [^1]: Including S3 and S4 generics and methods.