-
Notifications
You must be signed in to change notification settings - Fork 122
Fix typos #1346
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typos #1346
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
|
||
<p align="center"> | ||
<a href="#the-developers-toolbox">Develper's Toolbox</a> • | ||
<a href="#the-developers-toolbox">Developer's Toolbox</a> • | ||
<a href="#philosophy">Philosophy</a> • | ||
<a href="#installation">Installation</a> • | ||
<a href="#documentation">Documentation</a> • | ||
|
@@ -153,7 +153,7 @@ Projects using cmd2 | |
| [Poseidon](https://github.com/CyberReboot/poseidon) | Leverages software-defined networks (SDNs) to acquire and then feed network traffic to a number of machine learning techniques. | | | ||
| [Unipacker](https://github.com/unipacker/unipacker) | Automatic and platform-independent unpacker for Windows binaries based on emulation | | | ||
| [tomcatmanager](https://github.com/tomcatmanager/tomcatmanager) | A command line tool and python library for managing a tomcat server | | | ||
| [Expliot](https://gitlab.com/expliot_framework/expliot) | Internet of Things (IoT) exploitation framework | | | ||
| [Exploit](https://gitlab.com/expliot_framework/expliot) | Internet of Things (IoT) exploitation framework | | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Expliot" is the name of the software. It's not a typo. |
||
| [mptcpanalyzer]() | Tool to help analyze mptcp pcaps | | | ||
| [clanvas](https://github.com/marklalor/clanvas) | Command-line client for Canvas by Instructure | | | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Application Name, Description | |
[Poseidon](https://github.com/CyberReboot/poseidon),Leverages software-defined networks (SDNs) to acquire and then feed network traffic to a number of machine learning techniques. | ||
[Unipacker](https://github.com/unipacker/unipacker),Automatic and platform-independent unpacker for Windows binaries based on emulation | ||
[tomcatmanager](https://github.com/tomcatmanager/tomcatmanager),A command line tool and python library for managing a tomcat server | ||
[Expliot](https://gitlab.com/expliot_framework/expliot),Internet of Things (IoT) exploitation framework | ||
[Exploit](https://gitlab.com/expliot_framework/expliot),Internet of Things (IoT) exploitation framework | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Expliot" is the name of the software. It's not a typo. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same name of package not a typo |
||
[mptcpanalyzer](),Tool to help analyze mptcp pcaps | ||
[clanvas](https://github.com/marklalor/clanvas),Command-line client for Canvas by Instructure | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,10 @@ Genre: | |
|
||
|
||
|
||
Name: Microsoft/ Azure Counterfit | ||
Name: Microsoft/ Azure Counterfeit | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also name of a package There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Azure Counterfit" is the name of the software. It's not a typo. |
||
Source Code: https://github.com/Azure/counterfit | ||
Status: Active | ||
Description: Counterfit is a command-line tool and generic automation layer for assessing the security of machine learning systems. | ||
Description: Counterfeit is a command-line tool and generic automation layer for assessing the security of machine learning systems. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "Azure Counterfit" is the name of the software. It's not a typo. |
||
Genre: Security | ||
|
||
Name: MQTT-Pwn | ||
|
@@ -65,7 +65,7 @@ Genre: utility | |
Name: icl-rocketry/Avionics | ||
Source Code: https://github.com/icl-rocketry/Avionics | ||
Status: Active | ||
Description: The main repository for hardware and software assosciated with the Ricardo Avionics Ecosystem. | ||
Description: The main repository for hardware and software associated with the Ricardo Avionics Ecosystem. | ||
Genre: Utility | ||
|
||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -876,16 +876,16 @@ def test_find_editor_not_specified(): | |
|
||
|
||
def test_similarity(): | ||
suggested_command = cu.suggest_similar("comand", ["command", "UNRELATED", "NOT_SIMILAR"]) | ||
suggested_command = cu.suggest_similar("command", ["command", "UNRELATED", "NOT_SIMILAR"]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This unit test requires "command" to be misspelled. It's not a typo. |
||
assert suggested_command == "command" | ||
suggested_command = cu.suggest_similar("command", ["COMMAND", "acommands"]) | ||
assert suggested_command == "COMMAND" | ||
|
||
|
||
def test_similarity_without_good_canididates(): | ||
suggested_command = cu.suggest_similar("comand", ["UNRELATED", "NOT_SIMILAR"]) | ||
suggested_command = cu.suggest_similar("command", ["UNRELATED", "NOT_SIMILAR"]) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This unit test requires "command" to be misspelled. It's not a typo. |
||
assert suggested_command is None | ||
suggested_command = cu.suggest_similar("comand", []) | ||
suggested_command = cu.suggest_similar("command", []) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This unit test requires "command" to be misspelled. It's not a typo. |
||
assert suggested_command is None | ||
|
||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the name of the package and not a typo