diff --git a/intermediate_source/flask_rest_api_tutorial.py b/intermediate_source/flask_rest_api_tutorial.py
index 8b0162a9e84..b6b46aed91d 100644
--- a/intermediate_source/flask_rest_api_tutorial.py
+++ b/intermediate_source/flask_rest_api_tutorial.py
@@ -321,9 +321,7 @@ def get_prediction(image_bytes):
# for deploying a Flask server in production.
#
# - You can also add a UI by creating a page with a form which takes the image and
-# displays the prediction. Check out the `demo `_
-# of a similar project and its `source code `_.
-#
+# displays the prediction.
# - In this tutorial, we only showed how to build a service that could return predictions for
# a single image at a time. We could modify our service to be able to return predictions for
# multiple images at once. In addition, the `service-streamer `_