From 0ccdb204e33ce8ba9a6feb223de0ea161c8f212a Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Thu, 13 Dec 2018 18:55:28 +0100 Subject: [PATCH] Fix directory listing in intro (#3097) Fix directory listing in SDK intro so that it gets the path to the examples right (docs/examples/ as opposed to examples/). --- docs/intro/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/intro/README.md b/docs/intro/README.md index 54d8bfce17..07ebb4eac7 100644 --- a/docs/intro/README.md +++ b/docs/intro/README.md @@ -29,7 +29,7 @@ The SDK is laid out in the following directories: - `baseapp`: Defines the template for a basic [ABCI](https://github.com/tendermint/tendermint/tree/master/abci) application so that your Cosmos-SDK application can communicate with the underlying Tendermint node. - `client`: CLI and REST server tooling for interacting with SDK application. -- `examples`: Examples of how to build working standalone applications. +- `docs/examples`: Examples of how to build working standalone applications. - `server`: The full node server for running an SDK application on top of Tendermint. - `store`: The database of the SDK - a Merkle multistore supporting multiple types of underling Merkle key-value stores.