From a47ef06deddd5c9fef7f4bbae1b3bbbf997b7ecf Mon Sep 17 00:00:00 2001
From: aheinri5 <Anna@netzkritzler.de>
Date: Sun, 21 Feb 2021 15:01:05 +0100
Subject: [PATCH] [docs] fixed indentation in prj_vtkdiff

---
 R/prj_vtkdiff.R | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/R/prj_vtkdiff.R b/R/prj_vtkdiff.R
index 79c3b0d..e3986ea 100644
--- a/R/prj_vtkdiff.R
+++ b/R/prj_vtkdiff.R
@@ -13,28 +13,28 @@
 #' @example man/examples/ex_prj_vtkdiff.R
 #' @export
 prj_vtkdiff <- function(field,
-                           absolute_tolerance,
-                           relative_tolerance,
-                           file = NULL,
-                           regex = NULL) {
+                        absolute_tolerance,
+                        relative_tolerance,
+                        file = NULL,
+                        regex = NULL) {
 
     #Coerce input
     absolute_tolerance <- coerce_string_to_numeric(absolute_tolerance)
     relative_tolerance <- coerce_string_to_numeric(relative_tolerance)
 
     new_prj_vtkdiff(field,
-                       absolute_tolerance,
-                       relative_tolerance,
-                       file,
-                       regex)
+                    absolute_tolerance,
+                    relative_tolerance,
+                    file,
+                    regex)
 }
 
 
 new_prj_vtkdiff <- function(field,
-                               absolute_tolerance,
-                               relative_tolerance,
-                               file = NULL,
-                               regex = NULL) {
+                            absolute_tolerance,
+                            relative_tolerance,
+                            file = NULL,
+                            regex = NULL) {
 
     assertthat::assert_that(assertthat::is.string(field))
 
-- 
GitLab