Skip to content

Commit

Permalink
Merge pull request #117 from raspberrypilearning/draft
Browse files Browse the repository at this point in the history
Fix translation
  • Loading branch information
sashamishcheriakova authored Apr 30, 2024
2 parents e225a83 + ecd6fa8 commit b5e4aeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions fr-FR/step_3.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ line_highlights: 12
def setup():
size(400, 400)
global joueur
joueur = load_image('skiing.png') # Charge l'image de ton joueur
obstacle = load_image('rocket.png') # Charge l'image de ton obstacle
joueur = load_image('turtle.png') # Charge l'image de ton joueur
obstacle = load_image('shark.png') # Charge l'image de ton obstacle

--- /code ---

Expand Down
4 changes: 2 additions & 2 deletions nl-NL/step_3.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ line_highlights: 12
def setup():
size(400, 400)
global speler
speler = load_image('skiing.png') # Laad je speler-afbeelding
obstakel = load_image('rocket.png') # Laad je obstakel-afbeelding
speler = load_image('turtle.png') # Laad je speler-afbeelding
obstakel = load_image('shark.png') # Laad je obstakel-afbeelding

--- /code ---

Expand Down

0 comments on commit b5e4aeb

Please sign in to comment.