diff --git a/DESCRIPTION b/DESCRIPTION
index 388a6b5754287b1206aaae2920e82dc7244e034b..fae414520fb64294049febc8070e392e24f1a223 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,7 +1,7 @@
 Package: airGR
 Type: Package
 Title: Suite of GR Hydrological Models for Precipitation-Runoff Modelling
-Version: 1.6.0.0
+Version: 1.6.0.1
 Date: 2020-04-05
 Authors@R: c(
   person("Laurent", "Coron", role = c("aut", "trl"), comment = c(ORCID = "0000-0002-1503-6204")),
diff --git a/NEWS.md b/NEWS.md
index 6fe7a492d42f5883fa5f58f3df3b1aa2ccf4070d..8677536ef2514cd4fe20a09b6439d093a081b9dc 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -4,9 +4,10 @@
 
 
 
-### 1.6.0.0 Release Notes (2020-04-05)
+### 1.6.0.1 Release Notes (2020-04-05)
 
 #### New features
+
 - Semi-distributed GR models.
 
 
diff --git a/R/CreateInputsModel.R b/R/CreateInputsModel.R
index 0afb9f3ec2f9b76457248cf1e477062f062dc52a..b1a7d4dd61bf0ac1ae9fe8905c31bde56f4d90e5 100644
--- a/R/CreateInputsModel.R
+++ b/R/CreateInputsModel.R
@@ -190,8 +190,8 @@ CreateInputsModel <- function(FUN_MOD,
     # olivier: add a check to avoid any missing argument: 
     # either we have the three of them (then it is SD) or none (then it is lumped)
     
-    if("SD" %in% ObjectClass){
-      if (!("daily" %in% ObjectClass) & !("hourly" %in% ObjectClass)){
+    if ("SD" %in% ObjectClass) {
+      if (!("daily" %in% ObjectClass) & !("hourly" %in% ObjectClass)) {
         stop("Only daily and hourly time steps can be used in a semi-distributed mode")
       }
       if (!is.matrix(Q_upstr) | !is.matrix(L_hyd) | !is.matrix(S_basin)) {
@@ -200,16 +200,16 @@ CreateInputsModel <- function(FUN_MOD,
       if (!is.numeric(Q_upstr) | !is.numeric(L_hyd) | !is.numeric(S_basin)) {
         stop("'Q_upstr', 'L_hyd' and 'S_basin' must be matrices of numeric values")
       }
-      if (ncol(Q_upstr) != ncol(L_hyd)){
+      if (ncol(Q_upstr) != ncol(L_hyd)) {
         stop("'Q_upstr' and 'L_hyd' must have the same number of columns")
       }
-      if (ncol(Q_upstr)+1 != ncol(S_basin)){
+      if (ncol(Q_upstr)+1 != ncol(S_basin)) {
         stop("'S_basin' must have one column more than 'Q_upstr' and 'L_hyd'")
       }
-      if (nrow(L_hyd) != 1 | nrow(S_basin) != 1){
+      if (nrow(L_hyd) != 1 | nrow(S_basin) != 1) {
         stop("'L_hyd' and 'S_basin' must have only one row")
       }
-      if(any(is.na(Q_upstr))){
+      if(any(is.na(Q_upstr))) {
         stop("'Q_upstr' cannot contain any NA value")
       }
     }
@@ -326,9 +326,9 @@ CreateInputsModel <- function(FUN_MOD,
                                          LayerFracSolidPrecip = RESULT$LayerFracSolidPrecip,
                                          ZLayers              = RESULT$ZLayers))
     }
-    if("SD" %in% ObjectClass){
+    if ("SD" %in% ObjectClass) {
       InputsModel <- c(InputsModel, list(Q_upstr = Q_upstr, 
-                                         L_hyd=L_hyd,
+                                         L_hyd   = L_hyd,
                                          S_basin = S_basin)) 
     }