diff --git a/README.md b/README.md index d67d762..c24e792 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ ![License](https://img.shields.io/github/license/zS1L3NT/ts-npm-ytmusic-api?style=for-the-badge) ![Languages](https://img.shields.io/github/languages/count/zS1L3NT/ts-npm-ytmusic-api?style=for-the-badge) ![Top Language](https://img.shields.io/github/languages/top/zS1L3NT/ts-npm-ytmusic-api?style=for-the-badge) ![Commit Activity](https://img.shields.io/github/commit-activity/y/zS1L3NT/ts-npm-ytmusic-api?style=for-the-badge) ![Last commit](https://img.shields.io/github/last-commit/zS1L3NT/ts-npm-ytmusic-api?style=for-the-badge) -YouTube Music API (Unofficial) is a YouTube Music data scraper. It comes with TypeScript support API for return types. The NPM Package can be found [here](https://npmjs.com/package/ytmusic-api) +YouTube Music API (Unofficial) is a YouTube Music data scraper. It comes with TypeScript support API for return types. The NPM package can be found [here](https://npmjs.com/package/ytmusic-api) -**Full Documentation is available [here](http://ytmusic-api.zectan.com).** +**Full documentation is available [here](http://ytmusic-api.zectan.com).** ## Motivation diff --git a/docs/guides/usage.md b/docs/guides/usage.md index 42894a5..273fa68 100644 --- a/docs/guides/usage.md +++ b/docs/guides/usage.md @@ -1,6 +1,6 @@ # Usage -YTMusic provides you many ways of fetching data from YouTube Music
+YTMusic provides you with many ways of fetching data from YouTube Music
To leverage all the functions, we will need to create an instance of the class `YTMusic`. Then, call the `initialize()` to initialize the API before using the API anywhere @@ -14,6 +14,6 @@ ytmusic.initialize().then(() => { In an async context, you can initialize the API in one line ```ts -const ytmusic = await new YTMusic().initalize() +const ytmusic = await new YTMusic().initialize() // Use API here ``` diff --git a/docs/guides/usage/getAlbum.md b/docs/guides/usage/getAlbum.md index 1388301..6a3f89e 100644 --- a/docs/guides/usage/getAlbum.md +++ b/docs/guides/usage/getAlbum.md @@ -1,6 +1,6 @@ # Getting an album -`getAlbum()` will fetch you information about a specific album by it's ID. +`getAlbum()` will fetch you information about a specific album by its ID. ```ts ytmusic.getAlbum("MPREb_iG5q5DIdhdA").then(album => { diff --git a/docs/guides/usage/getArtist.md b/docs/guides/usage/getArtist.md index 0f84400..4495b85 100644 --- a/docs/guides/usage/getArtist.md +++ b/docs/guides/usage/getArtist.md @@ -1,6 +1,6 @@ # Getting an artist -`getArtist()` will fetch you information about a specific artist by it's ID. +`getArtist()` will fetch you information about a specific artist by its ID. ```ts ytmusic.getArtist("UCTUR0sVEkD8T5MlSHqgaI_Q").then(artist => { diff --git a/docs/guides/usage/getArtistAlbums.md b/docs/guides/usage/getArtistAlbums.md index f81f50b..ca2b78b 100644 --- a/docs/guides/usage/getArtistAlbums.md +++ b/docs/guides/usage/getArtistAlbums.md @@ -1,6 +1,6 @@ # Getting an artist's albums -`getArtistAlbums()` will fetch you information about a specific artist's albums by it's ID. +`getArtistAlbums()` will fetch you information about a specific artist's albums by its ID. ```ts ytmusic.getArtistAlbums("UCTUR0sVEkD8T5MlSHqgaI_Q").then(artistAlbums => { diff --git a/docs/guides/usage/getArtistSongs.md b/docs/guides/usage/getArtistSongs.md index 0139b67..e644792 100644 --- a/docs/guides/usage/getArtistSongs.md +++ b/docs/guides/usage/getArtistSongs.md @@ -1,6 +1,6 @@ # Getting an artist's songs -`getArtistSongs()` will fetch you information about a specific artist's songs by it's ID. +`getArtistSongs()` will fetch you information about a specific artist's songs by its ID. ```ts ytmusic.getArtistSongs("UCTUR0sVEkD8T5MlSHqgaI_Q").then(artistSongs => { diff --git a/docs/guides/usage/getPlaylist.md b/docs/guides/usage/getPlaylist.md index a9bd1cf..9116d8d 100644 --- a/docs/guides/usage/getPlaylist.md +++ b/docs/guides/usage/getPlaylist.md @@ -1,6 +1,6 @@ # Getting a playlist -`getPlaylist()` will fetch you information about a specific playlist by it's ID. +`getPlaylist()` will fetch you information about a specific playlist by its ID. ```ts ytmusic.getPlaylist("OLAK5uy_nRb467jR73IXKybwzw22_rTYIJ808x4Yc").then(playlist => { diff --git a/docs/guides/usage/getPlaylistVideos.md b/docs/guides/usage/getPlaylistVideos.md index 29c6710..214528e 100644 --- a/docs/guides/usage/getPlaylistVideos.md +++ b/docs/guides/usage/getPlaylistVideos.md @@ -1,6 +1,6 @@ -# Getting an playlist's videos +# Getting a playlist's videos -`getPlaylistVideos()` will fetch you information about a specific playlist's videos by it's ID. +`getPlaylistVideos()` will fetch you information about a specific playlist's videos by its ID. ```ts ytmusic.getPlaylistVideos("OLAK5uy_nRb467jR73IXKybwzw22_rTYIJ808x4Yc").then(playlistVideos => { diff --git a/docs/guides/usage/getSong.md b/docs/guides/usage/getSong.md index ba29da9..6abd620 100644 --- a/docs/guides/usage/getSong.md +++ b/docs/guides/usage/getSong.md @@ -1,6 +1,6 @@ # Getting a song -`getSong()` will fetch you information about a specific song by it's ID. +`getSong()` will fetch you information about a specific song by its ID. ```ts ytmusic.getSong("v7bnOxV4jAc").then(song => { diff --git a/docs/guides/usage/getVideo.md b/docs/guides/usage/getVideo.md index d320e43..99532db 100644 --- a/docs/guides/usage/getVideo.md +++ b/docs/guides/usage/getVideo.md @@ -1,6 +1,6 @@ # Getting a video -`getVideo()` will fetch you information about a specific video by it's ID. +`getVideo()` will fetch you information about a specific video by its ID. ```ts ytmusic.getVideo("v7bnOxV4jAc").then(video => {