From 896a3e270f27eede21ef71882360aa3e2643bc6b Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 18 Mar 2024 22:05:10 -0400 Subject: [PATCH] Indent docstrings under @overload --- lib/rscons/script.rb | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/lib/rscons/script.rb b/lib/rscons/script.rb index 922703f..55ee043 100644 --- a/lib/rscons/script.rb +++ b/lib/rscons/script.rb @@ -291,19 +291,19 @@ module Rscons # Create or modify a task. # # @overload task(name, options = {}, &block) - # @param name [String] - # Task name. - # @param options [Hash] - # Optional task attributes. - # @option options [Boolean] :autoconf - # Whether to automatically configure before running this task - # (default: true). - # @option options [String] :desc - # Description for the task. - # @option options [Array] :depends - # Dependencies of the task. - # @option options [Array] :params - # Task parameter definitions. + # @param name [String] + # Task name. + # @param options [Hash] + # Optional task attributes. + # @option options [Boolean] :autoconf + # Whether to automatically configure before running this task + # (default: true). + # @option options [String] :desc + # Description for the task. + # @option options [Array] :depends + # Dependencies of the task. + # @option options [Array] :params + # Task parameter definitions. # # The action block given will be invoked by Rscons when the task # executes. It will be passed two arguments: