From 10efe72c8d76afcb1d0e8dc4ec09339cf640476b Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Sun, 31 Mar 2024 00:03:22 +0530 Subject: [PATCH] Fix wrong param name used in docs for method definition --- lib/uploadcare/entity/conversion/base_converter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/uploadcare/entity/conversion/base_converter.rb b/lib/uploadcare/entity/conversion/base_converter.rb index 89df484..786c70a 100644 --- a/lib/uploadcare/entity/conversion/base_converter.rb +++ b/lib/uploadcare/entity/conversion/base_converter.rb @@ -9,7 +9,7 @@ class BaseConverter < Entity class << self # Converts files # - # @param doc_params [Array] of hashes with params or [Hash] + # @param params [Array] of hashes with params or [Hash] # @option options [Boolean] :store whether to store file on servers. def convert(params, options = {}) files_params = params.is_a?(Hash) ? [params] : params