From a10d49b75a8f2d7a2a87d30f340f20a0ffebec3d Mon Sep 17 00:00:00 2001 From: Alan Luo Date: Mon, 29 Nov 2021 12:05:13 -0800 Subject: [PATCH] Fix a typo (#44309) --- .../information-security-projects/port-scanner.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/09-information-security/information-security-projects/port-scanner.md b/curriculum/challenges/english/09-information-security/information-security-projects/port-scanner.md index d6c9eb946f..10c950657d 100644 --- a/curriculum/challenges/english/09-information-security/information-security-projects/port-scanner.md +++ b/curriculum/challenges/english/09-information-security/information-security-projects/port-scanner.md @@ -32,7 +32,7 @@ get_open_ports("www.stackoverflow.com", [79, 82]) The function should return a list of open ports in the given range. -The `get_open_ports` function should also take an optional third argument of `True` to indicate "Verbose" mode. If this is set to true, the function shourd return a descriptive string instead of a list of ports. +The `get_open_ports` function should also take an optional third argument of `True` to indicate "Verbose" mode. If this is set to true, the function should return a descriptive string instead of a list of ports. Here is the format of the string that should be returned in verbose mode (text inside `{}` indicates the information that should appear):