Skip to content

Commit

Permalink
Merge pull request #62 from kathyonu/patch-1
Browse files Browse the repository at this point in the history
Added missing semi-colon on variable statement
  • Loading branch information
Jed McCaleb committed Feb 23, 2016
2 parents 5c5dc8d + e240983 commit 2fab050
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/learn/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ js-stellar-sdk uses the [Builder pattern](https://en.wikipedia.org/wiki/Builder_
to Horizon. Starting with a [server](../reference/server.md) object, you can chain methods together to generate a query.
(See the [Horizon reference](https://www.stellar.org/developers/reference/) documentation for what methods are possible.)
```js
var StellarSdk = require('stellar-sdk')
var StellarSdk = require('stellar-sdk');
var server = new StellarSdk.Server('https://horizon-testnet.stellar.org');
// get a list of transactions that occurred in ledger 1400
server.transactions()
Expand Down

0 comments on commit 2fab050

Please sign in to comment.