https://github.com/tetzng/typolice
typolice is a tool to find typos in text.
https://github.com/tetzng/typolice
cli go typo
Last synced: 11 days ago
JSON representation
typolice is a tool to find typos in text.
- Host: GitHub
- URL: https://github.com/tetzng/typolice
- Owner: tetzng
- License: mit
- Created: 2025-03-05T13:00:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-13T18:07:43.000Z (9 months ago)
- Last Synced: 2026-03-31T19:55:16.356Z (4 months ago)
- Topics: cli, go, typo
- Language: Go
- Homepage:
- Size: 39.1 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# typolice
typolice is a tool to find typos in text.
## Installation
```bash
$ go install github.com/tetzng/typolice/cmd/typolice@latest
```
## Usage
```bash
$ typolice --text "AWS S3 is an object storage service."
Typo: AWS S3, Preferred: Amazon S3
Total typos found: 1
$ echo "Chat GPT is mentioned." | typolice --stdin
Typo: Chat GPT, Preferred: ChatGPT
Total typos found: 1
$ cat custom.json
{
"My Service": ["MyService"]
}
$ typolice --dictionary custom.json --text "MyService ships soon."
Typo: MyService, Preferred: My Service
Total typos found: 1
```
Use `--file ` to scan documents, and combine flags or positional arguments to analyze multiple sources in a single run.
## License
MIT
## Author
tetzng