Skip to content

Commit bafcb52

Browse files
committed
chore: docstring
1 parent 2508199 commit bafcb52

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/units/builders/ExecutionUnitConfigBuilder.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ export class ExecutionUnitConfigBuilder extends UnitConfigBuilder {
3939

4040
/**
4141
* Creates an executable instance. This method is intended to be overridden in subclasses.
42-
* @param {Object} config - Configuration object for the executable
42+
* @param {Application} application - The application object
43+
* @param {string} execName - The name of the executable
4344
* @returns {Executable} The created executable instance
4445
*/
4546
_createExecutable(application, execName) {
@@ -48,7 +49,8 @@ export class ExecutionUnitConfigBuilder extends UnitConfigBuilder {
4849

4950
/**
5051
* Creates a flavor instance. This method is intended to be overridden in subclasses.
51-
* @param {Object} config - Configuration object for the flavor
52+
* @param {Executable} executable - The executable object
53+
* @param {string} flavorName - The name of the flavor
5254
* @returns {Flavor} The created flavor instance
5355
*/
5456
_createFlavor(executable, flavorName) {

0 commit comments

Comments
 (0)