Skip to content

Commit 923710a

Browse files
authored
Merge pull request #37 from kianmeng/fix-typos
Fix typos
2 parents 3529df8 + c1b2dc2 commit 923710a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ There are several options for running...
6969
```bash
7070
docker run -it lissy93/adguardian
7171
```
72-
> You may also pass in your AdGuard info with env vars (using `-e`), see the [Configuring](#configuring) section for an example, and list of availible config params.<br>
72+
> You may also pass in your AdGuard info with env vars (using `-e`), see the [Configuring](#configuring) section for an example, and list of available config params.<br>
7373
> If you experience issues with DockerHub, or would rather use a different registry, the image is also available via GHCR - just replace the image name with: `ghcr.io/lissy93/adguardian`. Alternatively, if you'd like to build it yourself from source, you can do so with `docker buildx build -t adguardian .` then run it with `docker run -it adguardian`.
7474
7575
### Executable
@@ -108,7 +108,7 @@ make
108108
scoop install extras/adguardian
109109
```
110110

111-
> For Windows users, AdGuardian is availible via the [Scoop](https://scoop.sh/) package manager, as part of the `extras` bucket - You'll need Scoop installed, then follow [these instructions](https://scoop.sh/#/apps?q=adguardian). This was contributed by [@kzshantonu](https://github.com/kzshantonu) in [ScoopInstaller/Extras#11386](https://github.com/ScoopInstaller/Extras/pull/11386)
111+
> For Windows users, AdGuardian is available via the [Scoop](https://scoop.sh/) package manager, as part of the `extras` bucket - You'll need Scoop installed, then follow [these instructions](https://scoop.sh/#/apps?q=adguardian). This was contributed by [@kzshantonu](https://github.com/kzshantonu) in [ScoopInstaller/Extras#11386](https://github.com/ScoopInstaller/Extras/pull/11386)
112112
113113
### [AUR](https://aur.archlinux.org/packages/adguardian)
114114

@@ -213,7 +213,7 @@ Another great option is [gotty](https://github.com/yudai/gotty), which works in
213213

214214
You can also combine this with a service like [ngrok](https://ngrok.com/) to forward the port, and access the dashboard from anywhere. But be careful to apply the correct access controls!
215215

216-
Another fun idea, could be to display it on a little screen, either atatched or SSH'd into your AdGuard box.
216+
Another fun idea, could be to display it on a little screen, either attached or SSH'd into your AdGuard box.
217217

218218
<p align="center">
219219
<img src="https://i.ibb.co/VNL65hZ/20230529-165416.jpg" width="300" />
@@ -229,7 +229,7 @@ You'll need Rust installed. Run: `curl --proto '=https' --tlsv1.2 -sSf https://s
229229

230230
Then clone the repo, and cd into it, with: `git clone git@github.com:Lissy93/AdGuardian-Term.git` && `cd AdGuardian-Term`
231231

232-
You can view the full list of availible project commands in the [`Makefile`](https://github.com/Lissy93/AdGuardian-Term/blob/main/Makefile)
232+
You can view the full list of available project commands in the [`Makefile`](https://github.com/Lissy93/AdGuardian-Term/blob/main/Makefile)
233233

234234
### Run
235235

@@ -481,7 +481,7 @@ A mirror of this repository is published at: [codeberg.org/alicia/adguardian](ht
481481

482482
## Alterntives
483483

484-
This project was heavily inspired by [PADD](https://github.com/pi-hole/PADD) - terminal status for Pi-Hole users. If you're running [Pi-Hole](https://pi-hole.net/) instead of AdGuard, I highly reccomend you check that out, as it's awesome.
484+
This project was heavily inspired by [PADD](https://github.com/pi-hole/PADD) - terminal status for Pi-Hole users. If you're running [Pi-Hole](https://pi-hole.net/) instead of AdGuard, I highly recommend you check that out, as it's awesome.
485485

486486
Other developers have built similar AdGuard Home monitoring programs for mobile, including:
487487
- iOS app: [AdGuard Home Remote](https://apps.apple.com/us/app/adguard-home-remote/id1543143740) by RocketScience IT

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CARGO = $(CARGO_BIN) $(CARGO_OPTS)
88
# Main make command - build, test and run the app
99
all: clean build test doc run
1010

11-
# Run the program, will first comile if needed
11+
# Run the program, will first compile if needed
1212
run: build
1313
$(CARGO) run
1414

@@ -36,7 +36,7 @@ check:
3636
fmt:
3737
$(CARGO) fmt -- --check
3838

39-
# Check for common mistakes, and improvments
39+
# Check for common mistakes, and improvements
4040
clippy:
4141
$(CARGO) clippy -- -D warnings
4242

quick-start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#################################################################
44
# 🛡️ AdGuardian-Term - Simple start-up script #
55
#################################################################
6-
# This scipt will download the latest binary for your system, #
6+
# This script will download the latest binary for your system, #
77
# from GitHub, check it, make it executable, and then run it. #
88
# #
99
# Docs and source: https://github.com/Lissy93/AdGuardian-Term #

src/ui.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pub async fn draw_ui(
4242
terminal.clear()?;
4343

4444
loop {
45-
// Recieve query log and stats data from the fetcher
45+
// Receive query log and stats data from the fetcher
4646
let data = match data_rx.recv().await {
4747
Some(data) => data,
4848
None => break, // Channel has been closed, so we break the loop

0 commit comments

Comments
 (0)