From 53fe00b3d4ba1b2b6724345b75ea03dccaff673a Mon Sep 17 00:00:00 2001
From: Benoit Lavenier <benoit.lavenier@e-is.pro>
Date: Mon, 4 Nov 2019 14:30:08 +0100
Subject: [PATCH] [fix] Fix doc (use nodeJS v6)

---
 doc/build_ios.md                          | 2 +-
 doc/development_guide.md                  | 2 +-
 doc/fr/development_tutorial-01.md         | 6 +++---
 doc/fr/development_tutorial-03-android.md | 4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc/build_ios.md b/doc/build_ios.md
index 233851ae..d99ec0c3 100644
--- a/doc/build_ios.md
+++ b/doc/build_ios.md
@@ -70,7 +70,7 @@ export NVM_DIR="$HOME/.nvm"
 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm
 
 # Node.js
-nvm install 5
+nvm install 6
 
 # node-pre-gyp
 npm install -g nw-gyp node-pre-gyp
diff --git a/doc/development_guide.md b/doc/development_guide.md
index 4ef33d77..3958b28a 100644
--- a/doc/development_guide.md
+++ b/doc/development_guide.md
@@ -45,7 +45,7 @@ To build Cesium, you will have to:
 
 > To remind: check that your command line is configured:
 > - You must place yourself in the directory of the application: `cd cesium`
-> - and be configured for NodeJs v5: `nvm use 5` (please check using the command `node --version`)
+> - and be configured for NodeJs v6: `nvm use 6` (please check using the command `node --version`)
 
 
 ## Prepare environment, then compile and launch
diff --git a/doc/fr/development_tutorial-01.md b/doc/fr/development_tutorial-01.md
index cef79767..92230727 100644
--- a/doc/fr/development_tutorial-01.md
+++ b/doc/fr/development_tutorial-01.md
@@ -93,10 +93,10 @@ Vous pouvez installer nvm avec la commande suivante :
 curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.6/install.sh | bash
 ```
 
-Fermez puis rouvrez votre terminal, comme indiqué. Puis, installez Node.js (choisissez la version 5) : 
+Fermez puis rouvrez votre terminal, comme indiqué. Puis, installez Node.js (choisissez la version 6) : 
 
 ```bash
-nvm install 5
+nvm install 6
 ```
 
 Vous aurez alors la dernière version de la branche 5.x de Node.js prête à l'emploi.
@@ -110,7 +110,7 @@ sudo apt-get install build-essential
 
 #### Sous Windows
 
-Pour Windows, téléchargez la version 5 disponible sur le site officiel de Node.js : https://nodejs.org
+Pour Windows, téléchargez la version 6 disponible sur le site officiel de Node.js : https://nodejs.org
 
 Puis lancez l'installeur ainsi téléchargé.
 
diff --git a/doc/fr/development_tutorial-03-android.md b/doc/fr/development_tutorial-03-android.md
index 2ba71aa4..779fc024 100644
--- a/doc/fr/development_tutorial-03-android.md
+++ b/doc/fr/development_tutorial-03-android.md
@@ -116,10 +116,10 @@ Vérifiez que vous utilisez bien la version de NodeJs dont Cesium a besoin à l'
 node --version
 ```
 
-Si vous n'êtes pas sur une v5.X.X, utilisez la commande 
+Si vous n'êtes pas sur une v6, utilisez la commande 
 
 ```
-nvm use 5
+nvm use 6
 ```
 
 Vous pouvez maintenant lancer l'instalaltion du projet Cesium pour Android :
-- 
GitLab