commit a884649816ee02eeb69bb31d6ab21eeaebafe483
parent 087e227c67413185b7db0282e21333b6fbb2548d
Author: Natalie Pendragon <natpen@natpen.net>
Date: Thu, 14 May 2020 08:49:56 -0400
[serve] Update statistics copy slightly
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gus/serve.py b/gus/serve.py
@@ -44,14 +44,14 @@ def _render_index_statistics():
"",
"## Overall",
"",
- "These figures are reflective of the aggregate size of Geminispace at the time the current index was generated on {}.".format(last_index_statistics["index_modification_time"]),
+ "These figures are representative of the aggregate size of Geminispace at the time the current index was generated on {}.".format(last_index_statistics["index_modification_time"]),
"",
"Page Count : {:>5}".format(last_index_statistics["page_count"]),
"Domain Count : {:>5}".format(last_index_statistics["domain_count"]),
"",
"## By Content Type",
"",
- "These figures represent the number of pages seen per content type at the time the current index was generated on {}.".format(last_index_statistics["index_modification_time"]),
+ "These figures are representative of the number of pages seen per content type at the time the current index was generated on {}.".format(last_index_statistics["index_modification_time"]),
"",
]
for pair in last_index_statistics["content_type_frequencies"]: