Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
Fix typos in README (#122)
Browse files Browse the repository at this point in the history
* Fix typos in README

* Fix an internal URL
  • Loading branch information
AbhiGulati authored Oct 15, 2021
1 parent 2df92d7 commit 44fde92
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ FYI [Robinhood's Terms and Conditions](https://brokerage-static.s3.amazonaws.com
* [`expire_token(callback)`](#expire_token)
* [`investment_profile(callback)`](#investment_profilecallback)
* [`instruments(symbol, callback)`](#instrumentssymbol-callback)
* [`quote_data(stock, callback) // Not authenticated`](#quote-datastock-callback-not-authenticated)
* [`quote_data(stock, callback) // Not authenticated`](#quote_datastock-callback--not-authenticated)
* [`accounts(callback)`](#accountscallback)
* [`user(callback)`](#usercallback)
* [`dividends(callback)`](#dividendscallback)
Expand Down Expand Up @@ -432,7 +432,7 @@ Get the user's position information.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.positions(function(err, response, body){
if (err){
console.erro(err);
console.error(err);
}else{
console.log("positions");
console.log(body);
Expand All @@ -448,7 +448,7 @@ Get the user's nonzero position information only.
var Robinhood = require('robinhood')(credentials, function(){
Robinhood.nonzero_positions(function(err, response, body){
if (err){
console.erro(err);
console.error(err);
}else{
console.log("positions");
console.log(body);
Expand Down

0 comments on commit 44fde92

Please # to comment.