diff --git a/library/server/wsf/src/response/wsf_not_found_response.e b/library/server/wsf/src/response/wsf_not_found_response.e
index c5e72aaf..18de178e 100644
--- a/library/server/wsf/src/response/wsf_not_found_response.e
+++ b/library/server/wsf/src/response/wsf_not_found_response.e
@@ -103,7 +103,7 @@ feature {WSF_RESPONSE} -- Output
s.append ("Error 404 (Not Found)")
s.append ("
Error 404 (Not Found): " + html_encoder.encoded_string (request.request_uri) + "
")
if attached suggested_items as lst and then not lst.is_empty then
- s.append ("Perhaps your are looking for:")
+ s.append ("Perhaps you are looking for:")
from
lst.start
until
@@ -152,7 +152,7 @@ feature {WSF_RESPONSE} -- Output
s.append (request.request_uri)
s.append_character ('%N')
if attached suggested_items as lst and then not lst.is_empty then
- s.append ("%NPerhaps your are looking for:%N")
+ s.append ("%NPerhaps you are looking for:%N")
from
lst.start
until