-
-
Notifications
You must be signed in to change notification settings - Fork 657
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Misc text updates following initial review
... Co-Authored-By: André Santos <andrerfcsantos@gmail.com>
- Loading branch information
1 parent
6b34ed2
commit 357fd49
Showing
9 changed files
with
77 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"blurb": "Regular expressions", | ||
"blurb": "A regular expression is a sequence of characters that specify a search pattern.", | ||
"authors": ["norbs57"], | ||
"contributors": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package parsing_log_files | ||
package parsinglogfiles | ||
|
||
import ( | ||
"regexp" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module parsing_log_files | ||
module parsinglogfiles | ||
|
||
go 1.16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
package parsing_log_files | ||
package parsinglogfiles | ||
|
||
func IsValidLine(text string) bool { | ||
panic("IsValidLine not implemented") | ||
panic("Please implement the IsValidLine function") | ||
} | ||
|
||
func SplitLogLine(text string) []string { | ||
panic("SplitLogLine not implemented") | ||
panic("Please implement the SplitLogLine function") | ||
} | ||
|
||
func CountQuotedPasswords(lines []string) int { | ||
panic("CountQuotedPasswords not implemented") | ||
panic("Please implement the CountQuotedPasswords function") | ||
} | ||
|
||
func RemoveEndOfLineText(text string) string { | ||
panic("RemoveEndOfLineText not implemented") | ||
panic("Please implement the RemoveEndOfLineText function") | ||
} | ||
|
||
func TagWithUserName(lines []string) []string { | ||
panic("TagWithUserName not implemented") | ||
panic("Please implement the TagWithUserName function") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package parsing_log_files | ||
package parsinglogfiles | ||
|
||
import "testing" | ||
|
||
|