From ecc964cf1329aaa575fe3bc28906dce6357afa95 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Mon, 18 Feb 2019 18:21:51 +0800 Subject: [PATCH] Add explicit UTF-8 Encoding to DESCRIPTION I got this warning when following the recommended approach to generating documentation: ``` Warning message: roxygen2 requires Encoding: UTF-8 ``` As can be seen in [other](https://github.com/tidyverse/tidyverse/blob/master/DESCRIPTION) [`tidyverse`](https://github.com/tidyverse/dplyr/blob/master/DESCRIPTION) [`DESCRIPTION`s](https://github.com/tidyverse/readr/blob/master/DESCRIPTION), this is standard practice --- R/pkg/DESCRIPTION | 1 + 1 file changed, 1 insertion(+) diff --git a/R/pkg/DESCRIPTION b/R/pkg/DESCRIPTION index 736da46eaa8d3..49c43b5213e95 100644 --- a/R/pkg/DESCRIPTION +++ b/R/pkg/DESCRIPTION @@ -60,4 +60,5 @@ Collate: 'window.R' RoxygenNote: 5.0.1 VignetteBuilder: knitr +Encoding: UTF-8 NeedsCompilation: no