docs: Escape asterisks for Prettier compatibility.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit 7b3d4ff1de)
This commit is contained in:
Anders Kaseorg
2021-08-20 13:24:55 -07:00
parent 1c83ebfc71
commit cb0d29d845

View File

@@ -119,7 +119,7 @@ efficient:
each user, we just query for each user, and then add up the numbers for
the users to get the totals for the realm.
- Not storing rows when the value is 0. An hourly user stat would otherwise
collect 24 * 365 * roughly .5MB per db row = 4GB of data per user per
collect 24 \* 365 \* roughly .5MB per db row = 4GB of data per user per
year, most of whose values are 0. A related note is to be cautious about
adding queries that are typically non-0 instead of being typically 0.