Skip to content

Commit 8d915c5

Browse files
fix: typos and correcting grammatical errors (#170)
* fixed typos and correct grammatical errors * fix: small changes --------- Co-authored-by: Afonso Jorge Ramos <afonsojorgeramos@gmail.com>
1 parent 72a33ce commit 8d915c5

29 files changed

+55
-55
lines changed

docs/advanced-usage/command-line-interface.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Run with no command once to generate config file
99
spicetify
1010
```
1111

12-
If you just want to use Custom Apps and Extensions head over to each specific sections, if you want to create your own theme, keep reading below.
12+
If you just want to use Custom Apps and Extensions head over to each specific section, if you want to create your own theme, keep reading below.
1313

1414
Make sure config file is created successfully and there is no error, then run:
1515

docs/advanced-usage/custom-apps.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spicetify apply
3131

3232
## Uninstalling
3333

34-
If you want to remove a custom app from the current list of custom app you can always append a `-` after the file name:
34+
If you want to remove a custom app from the current list of custom apps you can always append a `-` after the file name:
3535

3636
```bash
3737
spicetify config custom_apps <file name>-
@@ -71,7 +71,7 @@ Three apps have been included to demonstrate how to create and inject an app:
7171

7272
### Reddit
7373

74-
Fetching posts from any Spotify link sharing subreddit. You can add, remove, arrange subreddits and customize post visual in config menu (in Profile menu, top right button with your user name).
74+
Fetching posts from any Spotify link sharing subreddit. You can add, remove, arrange subreddits and customize post visual in config menu (in Profile menu, top right button with your username).
7575

7676
![Reddit](https://i.imgur.com/MC3tpNZ.png)
7777

@@ -84,7 +84,7 @@ spicetify apply
8484

8585
### New Releases
8686

87-
Aggregate all new releases from favorite artists, podcasts. Time range, release type, and other filters can be customized in config menu (in Profile menu, top right button with your user name). Date format is based on your locale code (BCP47).
87+
Aggregate all new releases from favorite artists, podcasts. Time range, release type, and other filters can be customized in config menu (in Profile menu, top right button with your username). Date format is based on your locale code (BCP47).
8888

8989
![New Releases](https://i.imgur.com/MP9dTjt.png)
9090

@@ -99,7 +99,7 @@ spicetify apply
9999

100100
Get access to the current track's lyrics from various lyrics providers (Musixmatch, Netease, LRCLIB). Learn more [here](https://github.com/spicetify/cli/tree/main/CustomApps/lyrics-plus).
101101

102-
Colors, lyrics providers can be customized in config menu (in Profile menu, top right button with your user name).
102+
Colors, lyrics providers can be customized in config menu (in Profile menu, top right button with your username).
103103

104104
![Lyrics Plus](https://i.imgur.com/WtD080A.png)
105105

docs/advanced-usage/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ If Spotify is installed through the `spotify-launcher` package, then Spotify won
8181

8282
This directory will need to be added to the `spotify-path` section of the config (and you won't need to change any permissions like the AUR method).
8383

84-
**Note:** `spotify-path` must be an abslolute path. Do not use `~` to reference the home folder.
84+
**Note:** `spotify-path` must be an absolute path. Do not use `~` to reference the home folder.
8585

8686
#### Spotify installed from Snap
8787

@@ -96,7 +96,7 @@ echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sou
9696
sudo apt-get update && sudo apt-get install spotify-client
9797
```
9898

99-
4. After Spotify is installed successfully, you need to gain read write permissions on Spotify files, by running commands:
99+
3. After Spotify is installed successfully, you need to gain read write permissions on Spotify files, by running commands:
100100

101101
```bash
102102
sudo chmod a+wr /usr/share/spotify

docs/development/api-wrapper/classes/menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ setName(name: string): void
5959

6060
##### setState
6161

62-
Set the state of the menu item. The item would has a tick icon next to it if its state is enabled.
62+
Set the state of the menu item. The item will have a tick icon next to it if its state is enabled.
6363

6464
```ts
6565
setState(isEnabled: boolean): void

docs/development/api-wrapper/classes/topbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace Topbar {
3030
| icon | [`SVGIcon`](/docs/development/api-wrapper/types/svgicon) &#124; `string` | Icon of the button. |
3131
| onClick | `(self: Button) => void` | Callback function when the button is clicked. |
3232
| disabled | `boolean` | Whether the button is disabled. |
33-
| isRight | `boolean` | Whether the button is button placed on right side. |
33+
| isRight | `boolean` | Whether the button is button placed on the right side. |
3434

3535
#### Properties
3636

docs/development/api-wrapper/functions/get-font-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Spicetify provides a function that returns the CSS style for a given font varian
77

88
:::tip
99

10-
This function is used to provide backwards compatibility for older Spicetify extensions and custom apps that uses `main-type-` classes.
10+
This function is used to provide backwards compatibility for older Spicetify extensions and custom apps that use `main-type-` classes.
1111

1212
Instead of using this function to get Spotify stylings, you can simply add the `main-type-<variant>` class to your element.
1313

docs/development/api-wrapper/functions/remove-from-queue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This works similarly to [`Spicetify.Platform.PlayerAPI.removeFromQueue`](/docs/d
1111

1212
:::caution
1313

14-
If an `uid` is not provided, all tracks with the same `uri` will be removed.
14+
If a `uid` is not provided, all tracks with the same `uri` will be removed.
1515

1616
:::
1717

docs/development/api-wrapper/methods/app-title.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Spicetify provides a set of API methods to interact with the Spotify client app
77

88
:::note
99

10-
These methods only works for default app title.
10+
These methods only work for the default app title.
1111

1212
:::
1313

@@ -24,7 +24,7 @@ namespace AppTitle {
2424

2525
### `set`
2626

27-
Set default app title and forces it until cancelled. This will override any previous forced title.
27+
Set the default app title and force it until canceled. This will override any previous forced title.
2828

2929
:::note
3030

docs/development/api-wrapper/methods/cosmos-async.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: CosmosAsync
3-
description: Asyncronous Cosmos API wrapper used by the Spotify client.
3+
description: Asynchronous Cosmos API wrapper used by the Spotify client.
44
---
55

6-
Asyncronous Cosmos API wrapper used by the Spotify client. It is used to make requests to the Spotify client's internal API as well as external URLs.
6+
Asynchronous Cosmos API wrapper used by the Spotify client. It is used to make requests to the Spotify client's internal API as well as external URLs.
77

88
```ts
99
Spicetify.CosmosAsync

docs/development/api-wrapper/methods/graphql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ GraphQL API Wrapper used throughout the Spotify client. It is used to communicat
99

1010
Because this is a private API, it is not documented by Spotify. This documentation is based on the usage of the API in the Spotify client, and may not be accurate.
1111

12-
It is also subjected to drastic changes in the future, and has went through such changes in the past.
12+
It is also subject to drastic changes in the future, and has gone through such changes in the past.
1313

14-
Any issues or errors that arises from using this API is not the responsibility of this documentation. Use at your own risk.
14+
Any issues or errors that arise from using this API are not the responsibility of this documentation. If you want to take advantage of this API, bear this in mind.
1515

1616
:::
1717

@@ -266,7 +266,7 @@ This is the type of operation that you want to perform, and can be either `query
266266

267267
###### `name`
268268

269-
This is the name of the operation that you want to perform. Usually the name of the definition are self-explanatory, so you can be sure of what the operation does by looking at the name.
269+
This is the name of the operation that you want to perform. Usually the name of the definition is self-explanatory, so you can be sure of what the operation does by looking at the name.
270270

271271
###### `variableDefinitions`
272272

0 commit comments

Comments
 (0)