Skip to content
This repository was archived by the owner on Sep 25, 2020. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/programming_ringpop.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ an instance of TChannel, the underlying transport for Ringpop:

**Node.js**
```js
var TChannel = require('TChannel');
var TChannel = require('tchannel');

var tchannel = new TChannel();
var subChannel = tchannel.makeSubChannel({
Expand Down Expand Up @@ -42,6 +42,7 @@ We're there! Instantiate Ringpop:

**Node.js**
```js
var Ringpop = require('ringpop');
var ringpop = new Ringpop({
app: 'yourapp',
hostPort: host + ':' + port,
Expand Down