0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

fixed typo

This commit is contained in:
Marc Jeffrey 2021-05-15 22:08:37 +04:00
parent 9f922c43c7
commit 75c6c3b0e9
2 changed files with 18 additions and 18 deletions

View file

@ -10,20 +10,20 @@ plugins=(... crystal)
## Aliases
| Alias | Command | Description |
|:------|:--------------------------|:---------------------------------------------------------------|
| cry | `crystal` | language executable. |
| cryb | `crystal build` | build an executable. |
| crybr | `crystal build --release` | build an executable (Compile in release mode). |
| cryr | `crystal run` | build and run program. |
| cryrr | `crystal run --release` | build and run program (Compile in release mode). |
| crys | `crystal spec` | build and run specs. |
| crysr | `crystal spec --release` | build and run specs (Compile in release mode). |
| sha | `shards` | shard executable. |
| shac | `shards check` | Verify all dependencies are installed. |
| shai | `shards install` | Install dependencies, creating or using the `shard.lock` file. |
| shal | `shards list` | List installed dependencies. |
| shao | `shards outdated` | List dependencies that are outdated. |
| shap | `shards prune` | Remove unused dependencies from `lib` folder. |
| shau | `shards update` | Update dependencies and `shard.lock`. |
| shav | `shards version` | Print the current version of the shard. |
| Alias | Command | Description |
|:------|:------------------------------|:---------------------------------------------------------------|
| cry | `crystal` | language executable. |
| cryb | `crystal build` | build an executable. |
| crybr | `crystal build --release` | build an executable (Compile in release mode). |
| cryr | `crystal run` | build and run program. |
| cryrr | `crystal run --release` | build and run program (Compile in release mode). |
| crys | `crystal spec --order random` | build and run specs (in random order). |
| crysu | `crystal spec` | build and run specs. |
| sha | `shards` | shard executable. |
| shac | `shards check` | Verify all dependencies are installed. |
| shai | `shards install` | Install dependencies, creating or using the `shard.lock` file. |
| shal | `shards list` | List installed dependencies. |
| shao | `shards outdated` | List dependencies that are outdated. |
| shap | `shards prune` | Remove unused dependencies from `lib` folder. |
| shau | `shards update` | Update dependencies and `shard.lock`. |
| shav | `shards version` | Print the current version of the shard. |

View file

@ -12,7 +12,7 @@ alias cryr="crystal run"
alias cryrr="crystal run --release"
# Spec
alias crys="crystal spec --order rando"
alias crys="crystal spec --order random"
alias crysu="crystal spec"
# Shards