Skip to content

Commit

Permalink
Update server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lavskillup authored Jun 14, 2021
1 parent 0086204 commit f6cf6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion final_project/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
app = Flask("Web Translator")

@app.route("/englishToFrench")
def englishToSpanish():
def englishToFrench():
textToTranslate = request.args.get('textToTranslate')
# Write your code here
return "Translated text to French"
Expand Down

1 comment on commit f6cf6b8

@msbethn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

correcting en to fr codeline

Please sign in to comment.