Skip to content
This repository was archived by the owner on Jun 28, 2024. It is now read-only.

Commit 1adac9c

Browse files
author
Erkan Ercan
authored
typo and language errors fixed (#92)
1 parent 1ca6f1c commit 1adac9c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ This is **crates**, an extension for _crates.io_ dependencies. Aims helping deve
1414
## Notes
1515

1616
- It is only helpful if you are using dependencies from _crates.io_. Dependencies from _git_ or other platforms are not supported.
17-
- TOML must be valid. If not crates will not show versions. It will inform you with. status bar and dialog.
17+
- TOML must be valid. If not, crates will not show versions. It will inform you with the status bar and dialog.
1818

1919
## Features
2020

2121
**crates** is very simple. It has just two features.
2222

2323
- Displays the latest version of the crate next to it
24-
- Shows all versions (clickable) on tooltip of the crate hovered.
24+
- Shows all versions (clickable) on the tooltip of the crate hovered.
2525

2626
Aims to be fast and simple.
2727

@@ -39,13 +39,13 @@ It is so **simple** that you do not need any configuration, but if you insist...
3939

4040
`crates.useLocalCargoIndex`: If true, crates will use local cargo repository.
4141

42-
`crates.githubAuthBasic`: The `<username>:<personal-access-token>` or `<username>:<password>` for accessing Github API with increased access rates 5000 req/h.
42+
`crates.githubAuthBasic`: The `<username>:<personal-access-token>` or `<username>:<password>` for accessing Github API with increased access rates 5000 req/h.
4343

44-
`crates.upToDateDecorator`: The text to show when dependency is up to date. Default is 👍.
44+
`crates.upToDateDecorator`: The text to show when a dependency is up to date. Default is 👍.
4545

46-
`crates.latestDecorator`: The text to show when dependency is **not** up to date. Default is `Latest: ${version}`.
46+
`crates.latestDecorator`: The text to show when a dependency is **not** up to date. Default is `Latest: ${version}`.
4747

48-
`crates.listPreReleases` : If true, pre-release versions will be listed in hover and at decoration. Default is false.
48+
`crates.listPreReleases`: If true, pre-release versions will be listed in hover and at decoration. The default is false.
4949

5050
## Known Issues
5151

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"commands": [
4646
{
4747
"command": "crates.replaceVersion",
48-
"title": "Do not call manualy ! Replace Version of the provided dependency",
48+
"title": "Do not call manually ! Replace Version of the provided dependency",
4949
"category": "👆 Crates"
5050
},
5151
{
@@ -72,19 +72,19 @@
7272
"type": "string",
7373
"scope": "resource",
7474
"default": "❗️",
75-
"description": "The text to show when dependency has errors."
75+
"description": "The text to show when a dependency has errors."
7676
},
7777
"crates.upToDateDecorator": {
7878
"type": "string",
7979
"scope": "resource",
8080
"default": "👍",
81-
"description": "The text to show when dependency is up to date."
81+
"description": "The text to show when a dependency is up to date."
8282
},
8383
"crates.latestDecorator": {
8484
"type": "string",
8585
"scope": "resource",
8686
"default": "Latest: ${version}",
87-
"description": "The text template to show when dependency is not up to date. ${version} will be replaced by the latest version info."
87+
"description": "The text template to show when a dependency is not up to date. ${version} will be replaced by the latest version info."
8888
},
8989
"crates.listPreReleases": {
9090
"type": "boolean",

0 commit comments

Comments
 (0)