From a4f0c7a32bdfd4a13103438fb5ce37826aca8e9c Mon Sep 17 00:00:00 2001 From: Javier Acero Date: Fri, 15 Apr 2016 17:14:45 +0200 Subject: [PATCH] Fix template_id type in docs --- lib/dnsimple/client/templates.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dnsimple/client/templates.rb b/lib/dnsimple/client/templates.rb index aabcf9b7..a9b7b989 100644 --- a/lib/dnsimple/client/templates.rb +++ b/lib/dnsimple/client/templates.rb @@ -76,7 +76,7 @@ def create_template(account_id, attributes, options = {}) # client.templates.template(1010, 5401) # # @param [Fixnum] account_id the account ID - # @param [Fixnum] template_id the template ID + # @param [#to_s] template_id The template ID # @param [Hash] options # @return [Dnsimple::Response] # @@ -96,7 +96,7 @@ def template(account_id, template_id, options = {}) # client.templates.update_template(1010, 1, name: "New name") # # @param [Fixnum] account_iduthe account ID - # @param [Fixnum] template_id the template ID + # @param [#to_s] template_id The template ID # @param [Hash] attributes # @param [Hash] options # @return [Dnsimple::Response]