From a35b20a7bc4899cd6eb0135ff03f0a46c2f40890 Mon Sep 17 00:00:00 2001
From: yhan <yushi.han@pasteur.fr>
Date: Thu, 14 Sep 2023 15:20:13 +0200
Subject: [PATCH] changement of files R

---
 R/fun_check.R | 4 ++--
 R/fun_pack.R  | 2 +-
 R/fun_secu.R  | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/R/fun_check.R b/R/fun_check.R
index 08f2495..e0f8766 100644
--- a/R/fun_check.R
+++ b/R/fun_check.R
@@ -38,8 +38,8 @@
 #' - text: message indicating the details of the problem, or the absence of problem
 #' - object.name: value of the data.name argument (i.e., name of the checked object if provided, NULL otherwise)
 #' @details
-#' - If options == NULL, then at least class or type or mode or length argument must be non-null
-#' - If options is non-null, then class, type and mode must be NULL, and length can be NULL or specified
+#'  - If options == NULL, then at least class or type or mode or length argument must be non-null
+#'  - If options is non-null, then class, type and mode must be NULL, and length can be NULL or specified
 #' 
 #' - WARNINGS
 #' The function tests what is written in its arguments, even if what is written is incoherent. For instance, fun_check(data = factor(1), class = "factor", mode = "character") will return a problem, whatever the object tested in the data argument, because no object can be class "factor" and mode "character" (factors are class "factor" and mode "numeric"). Of note, length of object of class "environment" is always 0
diff --git a/R/fun_pack.R b/R/fun_pack.R
index ad9ddb2..6695fde 100644
--- a/R/fun_pack.R
+++ b/R/fun_pack.R
@@ -7,7 +7,7 @@
 #' @description
 #' Check if the specified R packages are present in the computer and import them into the working environment
 #' @param req.package Character vector of package names to import
-#' @param load Logical. Load the package into the environement (using library())? Interesting if packages are not in default folders or for checking the functions names of packages using search()
+#' @param load Logical. Load the package into the environment (using library())? Interesting if packages are not in default folders or for checking the functions names of packages using search()
 #' @param lib.path Optional character vector specifying the absolute pathways of the directories containing some of the listed packages in the req.package argument, if not in the default directories. Ignored if NULL
 #' @returns Nothing
 #' @details
diff --git a/R/fun_secu.R b/R/fun_secu.R
index 93fefb6..92deb1a 100644
--- a/R/fun_secu.R
+++ b/R/fun_secu.R
@@ -1,4 +1,4 @@
-######## fun_secu() #### verif that local variables are not present in other envs
+######## fun_secu() #### verify that local variables are not present in other envs
 
 #' @title fun_secu
 #' @description
-- 
GitLab