From 6e5f58191e5bbe1140f238f735d1a33f3a757440 Mon Sep 17 00:00:00 2001 From: Zach Date: Fri, 5 Oct 2018 09:51:23 -0400 Subject: [PATCH] add spec/abci/readme to sidebar (#2551) --- docs/.vuepress/config.js | 1 + docs/spec/abci/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index ce9491cb9..342c5eac3 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -106,6 +106,7 @@ module.exports = { title: "ABCI Spec", collapsable: false, children: [ + "/spec/abci/", "/spec/abci/abci", "/spec/abci/apps", "/spec/abci/client-server" diff --git a/docs/spec/abci/README.md b/docs/spec/abci/README.md index 02e369bf7..bb1c38b6e 100644 --- a/docs/spec/abci/README.md +++ b/docs/spec/abci/README.md @@ -1,4 +1,4 @@ -# ABCI +# Overview ABCI is the interface between Tendermint (a state-machine replication engine) and your application (the actual state machine). It consists of a set of @@ -11,9 +11,9 @@ This allows Tendermint to run applications written in any programming language. This specification is split as follows: -- [Methods and Types](abci.md) - complete details on all ABCI methods and +- [Methods and Types](./abci.md) - complete details on all ABCI methods and message types -- [Applications](apps.md) - how to manage ABCI application state and other +- [Applications](./apps.md) - how to manage ABCI application state and other details about building ABCI applications -- [Client and Server](client-server.md) - for those looking to implement their +- [Client and Server](./client-server.md) - for those looking to implement their own ABCI application servers