Skip to content

Commit

Permalink
chore(docs): Reorder named arguments to match the function signature
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
  • Loading branch information
sschuberth committed Jun 24, 2024
1 parent 2c8dd49 commit 6fb9c25
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ class DosPackageConfigurationProviderFactory :
override fun parseConfig(options: Options, secrets: Options) =
DosPackageConfigurationProviderConfig(
url = options.getValue("url"),
timeout = options["timeout"]?.toLongOrNull(),
token = secrets.getValue("token")
token = secrets.getValue("token"),
timeout = options["timeout"]?.toLongOrNull()
)
}

Expand Down

0 comments on commit 6fb9c25

Please sign in to comment.