From c939f45eb28b830ca30261399755597fa9cec6b6 Mon Sep 17 00:00:00 2001 From: Rout Chaitanya Date: Fri, 3 Jan 2020 16:56:20 +0530 Subject: [PATCH] Fabcar uses first-network instead basic-network Signed-off-by: Rout Chaitanya --- docs/source/write_first_app.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/write_first_app.rst b/docs/source/write_first_app.rst index 8398d127bd2..6097b624c67 100644 --- a/docs/source/write_first_app.rst +++ b/docs/source/write_first_app.rst @@ -271,11 +271,11 @@ The application connects to the network using a gateway: This code creates a new gateway and then uses it to connect the application to the network. ``ccp`` describes the network that the gateway will access with the identity ``user1`` from ``wallet``. See how the ``ccp`` has been loaded from -``../../basic-network/connection.json`` and parsed as a JSON file: +``../../first-network/connection.json`` and parsed as a JSON file: .. code:: bash - const ccpPath = path.resolve(__dirname, '..', '..', 'basic-network', 'connection.json'); + const ccpPath = path.resolve(__dirname, '..', '..', 'first-network', 'connection.json'); const ccpJSON = fs.readFileSync(ccpPath, 'utf8'); const ccp = JSON.parse(ccpJSON);