Browse Source

rpc: typo fixes

pull/526/head
Zach Ramsay 7 years ago
parent
commit
b3796e0aaa
4 changed files with 4 additions and 4 deletions
  1. +1
    -1
      rpc/core/README.md
  2. +1
    -1
      rpc/core/doc.go
  3. +1
    -1
      rpc/core/events.go
  4. +1
    -1
      rpc/core/tx.go

+ 1
- 1
rpc/core/README.md View File

@ -2,7 +2,7 @@
## Generate markdown for [Slate](https://github.com/tendermint/slate)
We are using [Slate](https://github.com/lord/slate) to power our RPC
We are using [Slate](https://github.com/tendermint/slate) to power our RPC
documentation. If you are changing a comment, make sure to copy the resulting
changes to the slate repo and make a PR
[there](https://github.com/tendermint/slate) as well. For generating markdown


+ 1
- 1
rpc/core/doc.go View File

@ -7,7 +7,7 @@ Tendermint supports the following RPC protocols:
* JSONRPC over HTTP
* JSONRPC over websockets
Tendermint RPC is build using [our own RPC library](https://github.com/tendermint/tendermint/tree/master/rpc/lib). Documentation and tests for that library could be found at `tendermint/rpc/lib` directory.
Tendermint RPC is built using [our own RPC library](https://github.com/tendermint/tendermint/tree/master/rpc/lib). Documentation and tests for that library could be found at `tendermint/rpc/lib` directory.
## Configuration


+ 1
- 1
rpc/core/events.go View File

@ -9,7 +9,7 @@ import (
// Subscribe for events via WebSocket.
//
// ```go
// import 'github.com/tendermint/tendermint/types'
// import "github.com/tendermint/tendermint/types"
//
// client := client.NewHTTP("tcp://0.0.0.0:46657", "/websocket")
// result, err := client.AddListenerForEvent(types.EventStringNewBlock())


+ 1
- 1
rpc/core/tx.go View File

@ -9,7 +9,7 @@ import (
)
// Tx allows you to query the transaction results. `nil` could mean the
// transaction is in the mempool, invalidated, or was not send in the first
// transaction is in the mempool, invalidated, or was not sent in the first
// place.
//
// ```shell


Loading…
Cancel
Save