From bd6da92917eb1336dc58e35d11e73f0069c4ba30 Mon Sep 17 00:00:00 2001 From: Mark Beacom Date: Tue, 14 Nov 2017 10:30:58 -0500 Subject: [PATCH 1/2] Fix inspect template copy typos --- src/redisboard/templates/redisboard/inspect.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/redisboard/templates/redisboard/inspect.html b/src/redisboard/templates/redisboard/inspect.html index 8d702a5..3a47cf5 100644 --- a/src/redisboard/templates/redisboard/inspect.html +++ b/src/redisboard/templates/redisboard/inspect.html @@ -70,9 +70,9 @@

{% if db_detail.sampling %} {% with db_detail.size as total %} {% blocktrans count original.sampling_threshold as size %} - {{ size }} random key our of {{ total }} + {{ size }} random key out of {{ total }} {% plural %} - {{ size }} random keys our of {{ total }} + {{ size }} random keys out of {{ total }} {% endblocktrans %} {% endwith %} {% else %} From c0d4b081bd7efe487de8b3d70ac83c9fd0eb5a96 Mon Sep 17 00:00:00 2001 From: Mark Beacom Date: Tue, 14 Nov 2017 10:56:36 -0500 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0b53ba4..2372478 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,9 @@ Changelog ============ +3.0.3 (2017-11-14) +* Fixed typo in inspect.html template to reflect `out`. + 3.0.2 (2017-01-19) ------------------