Indent docstrings under @overload

This commit is contained in:
Josh Holtrop 2024-03-18 22:05:10 -04:00
parent 3ee0015cef
commit 896a3e270f

View File

@ -291,19 +291,19 @@ module Rscons
# Create or modify a task. # Create or modify a task.
# #
# @overload task(name, options = {}, &block) # @overload task(name, options = {}, &block)
# @param name [String] # @param name [String]
# Task name. # Task name.
# @param options [Hash] # @param options [Hash]
# Optional task attributes. # Optional task attributes.
# @option options [Boolean] :autoconf # @option options [Boolean] :autoconf
# Whether to automatically configure before running this task # Whether to automatically configure before running this task
# (default: true). # (default: true).
# @option options [String] :desc # @option options [String] :desc
# Description for the task. # Description for the task.
# @option options [Array<String>] :depends # @option options [Array<String>] :depends
# Dependencies of the task. # Dependencies of the task.
# @option options [Array<Task::Param>] :params # @option options [Array<Task::Param>] :params
# Task parameter definitions. # Task parameter definitions.
# #
# The action block given will be invoked by Rscons when the task # The action block given will be invoked by Rscons when the task
# executes. It will be passed two arguments: # executes. It will be passed two arguments: