Skip to content

Commit

Permalink
Correct the comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
kentlouisetonino committed Apr 1, 2024
1 parent 1a1c306 commit c72249c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/get_hexadecimal_to_binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func getHexadecimalToBinary(hexadecimal string) string {
// Store the equivalent of each hex value.
binaryArray := []string{}

// SPlit the hexadecimal string.
// Split the hexadecimal string.
hexadecimalArray := strings.SplitAfter(hexadecimal, "")

for i := 0; i < len(hexadecimalArray); i++ {
Expand Down

0 comments on commit c72249c

Please sign in to comment.