From c7cf4f8deaefef858dda38ccd79ecd2ad6767f34 Mon Sep 17 00:00:00 2001 From: Josh Adams Date: Sun, 13 Dec 2015 18:43:38 -0600 Subject: [PATCH] Type a fixo. arrity -> arity --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d405f2a5..09174e50 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ mix test I've tried to make the API somewhat comprehensive and intuitive. If you'd like to see things in detail be sure to have a look at the tests - they show (generally) the way the API goes together. -In general, if Stripe requires some information for a given API call, you'll find that as part of the arrity of the given function. For instance if you want to delete a Customer, you'll find that you *must* pass the id along: +In general, if Stripe requires some information for a given API call, you'll find that as part of the arity of the given function. For instance if you want to delete a Customer, you'll find that you *must* pass the id along: ``` {:ok, result} = Stripe.Customers.delete "some_id"