diff --git a/app.py b/app.py
index b2cb2c010d54f40945e943cb717bbcbf5c0f89fd..30c6ada9079702d646524e30296e48956ce23edf 100644
--- a/app.py
+++ b/app.py
@@ -156,8 +156,8 @@ def check_cache(author_name: str, verbose=0):
     aliases = semantic_scholar_alias(author_name)
     if type(aliases) is not None:
         if len(aliases):
-            st.success("Alternative name phrasing found in semantic scholar API...")
-            st.success("Also try one of these alternative name phrasings: {0}".format(aliases))
+            st.success("Aliases found in semantic scholar API...")
+            st.success("Also try one of these alternative name queries: {0}".format(aliases))
             #author_name = aliases[0]
 
     with shelve.open("data/fast_graphs_splash.p") as db: