Skip to content

Commit

Permalink
docstring fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MarketDataApp committed Feb 19, 2024
1 parent c8ac9b0 commit dd3e983
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stocks_candles.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (scr *StockCandlesRequest) Raw() (*resty.Response, error) {
////
// # Returns
//
// - *models.StockCandlesResponse: A pointer to the StockCandlesResponse obtained from the request.
// - *StockCandlesResponse: A pointer to the StockCandlesResponse obtained from the request.
// - error: An error object that indicates a failure in sending the request.
func (scr *StockCandlesRequest) Packed() (*models.StockCandlesResponse, error) {
if scr == nil {
Expand All @@ -292,7 +292,7 @@ func (scr *StockCandlesRequest) Packed() (*models.StockCandlesResponse, error) {
//
// # Returns
//
// - []models.StockCandle: A slice of []Candle containing the unpacked candle data from the response.
// - []Candle: A slice of []Candle containing the unpacked candle data from the response.
// - error: An error object that indicates a failure in sending the request or unpacking the response.
func (scr *StockCandlesRequest) Get() ([]models.Candle, error) {
if scr == nil {
Expand Down

0 comments on commit dd3e983

Please sign in to comment.