From d082c4040fbaf16e2edd29f35c63adcd545c8ab5 Mon Sep 17 00:00:00 2001 From: Jack Oddy Date: Fri, 17 Feb 2023 10:07:38 +0000 Subject: [PATCH] Fixes typo in README `create_subscription_types` does not exist on the contact class --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b60d9ac..8ad928a 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ contact.remove_company(id: company.id) contact.companies.each {|c| p c.name} # attach a subscription_types on a contact -contact.create_subscription_types(id: subscription_type.id) +contact.create_subscription_type(id: subscription_type.id) # List subscription_types for a contact contact.subscription_types.each {|n| p n.id}