Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuller-tines committed Dec 4, 2024
1 parent 7913c82 commit 71c630a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/tines_cli/stories.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ type Story struct {
}

// Create a new story.
func (c *Client) CreateStory(new *Story) (*Story, error) {
func (c *Client) CreateStory(s *Story) (*Story, error) {
newStory := Story{}

req, err := json.Marshal(&new)
req, err := json.Marshal(&s)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 71c630a

Please sign in to comment.