Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Rusin authored and rusinikita committed Mar 27, 2024
1 parent 57a5449 commit 95bd38e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion challenge/files/01_structs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ text = "Point at problems in code"
type = "select_answers"
answers = [
{ text = "Pointer func argument is unmodifiable" },
{ text = "New structure istead of field change", code_line_ranges = [[4, 7]] },
{ text = "New structure instead of field change", code_line_ranges = [[4, 7]] },
{ text = "Employee is immutable struct" },
{ text = "Not a pointer" },
{ text = "Pointer copy changed", code_line_ranges = [[4, 7]] },
Expand Down
2 changes: 1 addition & 1 deletion challenge/files/07_channels_1.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func main() {
c := time.Tick(1 * time.Second)
for range c {
fmt.Printf("#goroutines: %d\n", runtime.NumGoroutine())
fmt.Printf("#goroutines: %d\\n", runtime.NumGoroutine())
}
}
"""
Expand Down

0 comments on commit 95bd38e

Please sign in to comment.