From 646e409859e364b82e1089d7d14b322b12692e5e Mon Sep 17 00:00:00 2001 From: ItsIgnacioPortal <46269721+ItsIgnacioPortal@users.noreply.github.com> Date: Thu, 5 Feb 2026 19:09:16 -0300 Subject: [PATCH] fix(docs): Fixed misspelling --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 78dd906c7..821ec7a40 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -29,7 +29,7 @@ You can remove duplicate lines from any wordlists using the command: - On Linux: `sort -u your_wordlist.txt --output clean_file.txt` - On Windows (Powershell): `&"C:\cygwin64\bin\sort.exe" -u your_wordlist.txt --output clean_file.txt` -If the order of the lines matters, for example if you're uploading a wordlist of passwords where they are sorted by probability, then you can instead use this command instead: +If the order of the lines matters, for example if you're uploading a wordlist of passwords where they are sorted by probability, then you can use this command instead: - On Linux: `gawk '!seen[$0]++' your_wordlist.txt > clean_file.txt'` - On Windows (Powershell): `&"C:\cygwin64\bin\gawk.exe" '!seen[$0]++' your_wordlist.txt > clean_file.txt'`