Skip to content

Commit

Permalink
updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel1984 authored and JacobPlaster committed Sep 8, 2020
1 parent cc4aed5 commit e1016e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/rest_v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -763,8 +763,7 @@ https://docs.bitfinex.com/reference#rest-public-pulse-profile
```go
func (ps *PulseService) PulseHistory() ([]*pulse.Pulse, error)
```
PulseHistory allows you to retrieve your pulse history. Call function with
"false" boolean value for private and with "true" for public pulse history. see
PulseHistory allows you to retrieve your pulse history. see
https://docs.bitfinex.com/reference#rest-auth-pulse-hist

#### type Request
Expand Down
3 changes: 1 addition & 2 deletions v2/rest/pulse.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,7 @@ func (ps *PulseService) AddComment(p *pulse.Pulse) (*pulse.Pulse, error) {
return ps.AddPulse(p)
}

// PulseHistory allows you to retrieve your pulse history. Call function with
// "false" boolean value for private and with "true" for public pulse history.
// PulseHistory allows you to retrieve your pulse history.
// see https://docs.bitfinex.com/reference#rest-auth-pulse-hist
func (ps *PulseService) PulseHistory() ([]*pulse.Pulse, error) {
req, err := ps.NewAuthenticatedRequest(common.PermissionRead, path.Join("pulse", "hist"))
Expand Down

0 comments on commit e1016e7

Please sign in to comment.