Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos when requesting client ID, client secret and code #210

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ It should automatically appear in the list of available scrapers.
Mangal also supports integration with anilist.

Besides fetching metadata for each manga when downloading,
mangal can also mark chapters as read on your Anilsit profile when you read them inside mangal.
mangal can also mark chapters as read on your Anilist profile when you read them inside mangal.

For more information see [wiki](https://github.com/metafates/mangal/wiki/Anilist-Integration)

Expand Down
6 changes: 3 additions & 3 deletions cmd/integration.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ See https://github.com/metafates/mangal/wiki/Anilist-Integration for more inform

if viper.GetString(key.AnilistID) == "" {
input := survey.Input{
Message: "Anilsit client ID is not set. Please enter it:",
Message: "Anilist client ID is not set. Please enter it:",
Help: "",
}
var response string
Expand All @@ -87,7 +87,7 @@ See https://github.com/metafates/mangal/wiki/Anilist-Integration for more inform

if viper.GetString(key.AnilistSecret) == "" {
input := survey.Input{
Message: "Anilsit client secret is not set. Please enter it:",
Message: "Anilist client secret is not set. Please enter it:",
Help: "",
}
var response string
Expand Down Expand Up @@ -122,7 +122,7 @@ See https://github.com/metafates/mangal/wiki/Anilist-Integration for more inform
}

input := survey.Input{
Message: "Anilsit code is not set. Please copy it from the link and paste in here:",
Message: "Anilist code is not set. Please copy it from the link and paste in here:",
Help: "",
}

Expand Down