diff --git a/bitcointransaction.go b/bitcointransaction.go index 6a2ac5518e..af2b8f75f6 100644 --- a/bitcointransaction.go +++ b/bitcointransaction.go @@ -10,7 +10,7 @@ type BitcoinTransactionListParams struct { } // BitcoinTransactionList is a list object for BitcoinTransactions. -// It is a child object of BitcoinRecievers +// It is a child object of BitcoinReceivers // For more details see https://stripe.com/docs/api/#retrieve_bitcoin_receiver type BitcoinTransactionList struct { ListMeta diff --git a/webhook/client_handler_test.go b/webhook/client_handler_test.go index 6d167ae170..ef692d27a6 100644 --- a/webhook/client_handler_test.go +++ b/webhook/client_handler_test.go @@ -11,7 +11,7 @@ import ( func Example() { http.HandleFunc("/webhook", func(w http.ResponseWriter, req *http.Request) { - // Protects against a malicious client streaming us an endless requst + // Protects against a malicious client streaming us an endless request // body const MaxBodyBytes = int64(65536) req.Body = http.MaxBytesReader(w, req.Body, MaxBodyBytes)