Skip to content

Commit

Permalink
Fix translation
Browse files Browse the repository at this point in the history
French
  • Loading branch information
sashamishcheriakova committed Nov 20, 2023
1 parent 02adbe3 commit e2de622
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fr-FR/step_5.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ line_highlights: 16-31

no_stroke() #Désactiver le trait

for i in la plage (25):
for i in range(25):
fill(255, 255 - i*10, 0)
ellipse(width/2, fusee_y + i, 8, 3)

Expand Down
2 changes: 1 addition & 1 deletion fr-FR/step_6.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ if carburant < brule and fusee_y > orbite_y:
tint(255, 0, 0) #Échec
elif carburant < 1000 and fusee_y <= orbite_y:
tint(0, 255, 0) #Succès
elif carburant >= 1000 et brule_y <= orbite_y :
elif carburant >= 1000 and fusee_y <= orbite_y :
tint(255, 200, 0) #Trop de carburant

image(fusee, width/2, fusee_y, 64, 64)
Expand Down

0 comments on commit e2de622

Please sign in to comment.