diff --git a/src/main/kotlin/dev/arbjerg/ukulele/command/SkipCommand.kt b/src/main/kotlin/dev/arbjerg/ukulele/command/SkipCommand.kt index 80c642b..df5b1e4 100644 --- a/src/main/kotlin/dev/arbjerg/ukulele/command/SkipCommand.kt +++ b/src/main/kotlin/dev/arbjerg/ukulele/command/SkipCommand.kt @@ -41,10 +41,10 @@ class SkipCommand : Command("skip", "s") { } override fun HelpContext.provideHelp() { - addUsage("[count]") - addDescription("Skips a number of tracks.") + addUsage("[index]") + addDescription("Skips a single track.") addDescription("Defaults to the first track if no number is given.") addUsage(" ") addDescription("Skips a range of tracks.") } -} \ No newline at end of file +}