Skip to content

Commit

Permalink
Replace apostrophe with typewriter apostrophe
Browse files Browse the repository at this point in the history
What
===
Replace the typographic apostrophe with typewriter apostrophe.

Why
===
Typographic apostrophes are not common or the norm in plain text
comments and code.

Notes
===
This change was pulled out of #206 by @dsmcfarl, where this was
corrected but it was unrelated to the rest of the changes in that PR.
  • Loading branch information
leighmcculloch committed Jan 12, 2018
1 parent da6d95e commit 5f6bb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transaction_gateway.go
Expand Up @@ -65,7 +65,7 @@ func (g *TransactionGateway) Settle(ctx context.Context, id string) (*Transactio

// Void voids the transaction with the specified id if it has a status of authorized or
// submitted_for_settlement. When the transaction is voided Braintree will do an authorization
// reversal if possible so that the customer wont have a pending charge on their card
// reversal if possible so that the customer won't have a pending charge on their card
func (g *TransactionGateway) Void(ctx context.Context, id string) (*Transaction, error) {
resp, err := g.execute(ctx, "PUT", "transactions/"+id+"/void", nil)
if err != nil {
Expand Down

0 comments on commit 5f6bb35

Please sign in to comment.