Skip to content

Commit

Permalink
fix(provider): fix incorrect parameter name on author()
Browse files Browse the repository at this point in the history
  • Loading branch information
rhenwinch committed Aug 28, 2024
1 parent 155292f commit 86fc22c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,16 @@ abstract class FlixclusiveProviderExtension @Inject constructor(val project: Pro
* Adds an author to the list of authors.
*
* @param name The name of the author.
* @param githubLink The optional link associated with the author's github profile.
* @param socialLink The optional link associated with the author's social.
*/
fun author(
name: String,
githubLink: String? = null
socialLink: String? = null
) {
authors.add(
Author(
name = name,
socialLink = githubLink
socialLink = socialLink
)
)
}
Expand Down

0 comments on commit 86fc22c

Please sign in to comment.