diff --git a/NEWS.md b/NEWS.md
index c731b7ee82d791110a6b8a961fab811f1064009d..d112a86eb8ed7570e3d3627b6faf86bff144d26e 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -39,7 +39,7 @@ ________________________________________________________________________________
 ____________________________________________________________________________________
 
 
-### 1.4.3.88 Release Notes (2020-04-24)
+### 1.4.3.91 Release Notes (2020-08-26)
 
 #### Version control and issue tracking
 
diff --git a/README.md b/README.md
index 949c2fe8dfb106c9e8686735ef7028fafd64f9a7..ef2c0ad1657f36d17a8abe92a4fc6e45d37b74cd 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,7 @@ Six hydrological models and one snow melt and accumulation model are implemented
 These models can be called within airGR using the following functions: 
 
   - `RunModel_GR4H`: four-parameter hourly lumped hydrological model (Mathevet, 2005)
-  - `RunModel_GR5H`: four-parameter hourly lumped hydrological model (Ficchi, 2017; Ficchi *et al.*, 2019)
+  - `RunModel_GR5H`: five-parameter hourly lumped hydrological model (Ficchi, 2017; Ficchi *et al.*, 2019)
   - `RunModel_GR4J`: four-parameter daily lumped hydrological model (Perrin *et al.*, 2003)
   - `RunModel_GR5J`: five-parameter daily lumped hydrological model (Le Moine, 2008)
   - `RunModel_GR6J`: six-parameter daily lumped hydrological model (Pushpalatha *et al.*, 2011)
@@ -56,7 +56,7 @@ To learn how to use the functions from the airGR package, it is recommended to f
   4. refer to the help for `ErrorCrit_NSE` and `CreateInputsCrit` to understand how the computation of an error criterion is prepared/made;
   5. refer to the help for `Calibration_Michel`, run the provided example and then refer to the help for `CreateCalibOptions` to understand how a model calibration is prepared/made.
 
-For more information and to get started with the package, you can refer to the vignette (vignette("V01_get_started")`) and go on the [airGR website](https://hydrogr.github.io/airGR).
+For more information and to get started with the package, you can refer to the vignette (`vignette("V01_get_started")`) and go on the [airGR website](https://hydrogr.github.io/airGR).
 
 
 ## References
diff --git a/man/PE_Oudin.Rd b/man/PE_Oudin.Rd
index 56104776fc2e515af895c4bf85d2e0cfd69828f3..031d8d1090315ba3ba79485665e784f61275eaaa 100644
--- a/man/PE_Oudin.Rd
+++ b/man/PE_Oudin.Rd
@@ -45,7 +45,7 @@ Function which computes PE using the formula from Oudin et al. (2005). PE can be
 }
 
 \details{
-In the \code{JD} argument, the Julian day of the year of the 1st of January is equal to 1 and the 31st of December to 365 (366 in leap years)). If the Julian day of the year is computed on an object of the \code{POSIXlt} class, the user has to add 1 to the returned value (e.g. \code{as.POSIXlt("2016-12-31")$yday + 1}).
+In the \code{JD} argument, the Julian day of the year of the 1st of January is equal to 1 and the 31st of December to 365 (366 in leap years). If the Julian day of the year is computed on an object of the \code{POSIXlt} class, the user has to add 1 to the returned value (e.g. \code{as.POSIXlt("2016-12-31")$yday + 1}).
 
 When hourly temperature is provided, all the values of the same day have to be set to the same Julian day of the year (e.g. \code{as.POSIXlt("2016-12-31 00:00:00")$yday + 1} and \code{as.POSIXlt("2016-12-31 00:01:00")$yday + 1}). Each single day must be provided 24 identical Julian day values (one for each hour).