diff --git a/R/fun_check.R b/R/fun_check.R
index 08f2495e177a78bae13d4057ff4345a5bcd4c659..e0f87665a7549de838cfab2e5ef054a843c9c51c 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 ad9ddb2cde2929f53712ef99b90ee730d889ccd2..6695fdec6c213d50c6582514bdd334b4fe4cfd28 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 93fefb6667f58cae3a2fe4cc0def371e9f0700fa..92deb1a8f2abe88242a67b3ead3d64378ef48883 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