Skip to content

Commit

Permalink
Fix param in TekstowoAPIArtistProfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Davilarek committed May 27, 2024
1 parent 6fd304b commit 436276b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@
**Kind**: global class
<a name="new_TekstowoAPIArtistProfile_new"></a>

### new TekstowoAPIArtistProfile(displayName, artistDescription, images, discography, comments, internalId)
### new TekstowoAPIArtistProfile(displayName, artistDescription, images, discography, commentCount, internalId)

| Param | Type |
| --- | --- |
| displayName | <code>string</code> |
| artistDescription | <code>string</code> |
| images | <code>Array.&lt;{hd: string, small: string}&gt;</code> |
| discography | <code>Array.&lt;{year: number, name: string}&gt;</code> |
| comments | <code>number</code> \| <code>undefined</code> |
| commentCount | <code>number</code> \| <code>undefined</code> |
| internalId | <code>string</code> \| <code>undefined</code> |

<a name="TekstowoAPILyrics"></a>
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class TekstowoAPIArtistProfile {
* @param {string} artistDescription
* @param {Array<{ hd: string, small: string }>} images
* @param {Array<{ year: number, name: string }>} discography
* @param {number | undefined} comments
* @param {number | undefined} commentCount
* @param {string | undefined} internalId
*/
constructor(displayName, artistDescription, images, discography, commentCount, internalId) {
Expand Down

0 comments on commit 436276b

Please sign in to comment.