Browse Source

add spec/abci/readme to sidebar (#2551)

pull/2557/head
Zach 6 years ago
committed by Ethan Buchman
parent
commit
6e5f58191e
2 changed files with 5 additions and 4 deletions
  1. +1
    -0
      docs/.vuepress/config.js
  2. +4
    -4
      docs/spec/abci/README.md

+ 1
- 0
docs/.vuepress/config.js View File

@ -106,6 +106,7 @@ module.exports = {
title: "ABCI Spec",
collapsable: false,
children: [
"/spec/abci/",
"/spec/abci/abci",
"/spec/abci/apps",
"/spec/abci/client-server"


+ 4
- 4
docs/spec/abci/README.md View File

@ -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

Loading…
Cancel
Save