summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2019-05-24 11:16:06 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2019-05-24 11:16:06 -0400
commit329575db94cda78d467c52f71967acf26fcc5ce2 (patch)
tree70d26681d292a48f9994bfb63d44f00fdcaff636
parent5d91a9e8ac9cc6dc9d3695fcaa41132f2c4f0a89 (diff)
Doc: fix typo in pgbench random_zipfian() documentation.
Per bug #15819 from Koizumi Satoru. Discussion: https://postgr.es/m/15819-e6191bef1f7334c0@postgresql.org
-rw-r--r--doc/src/sgml/ref/pgbench.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml
index 8c02ddb3619..865be44947e 100644
--- a/doc/src/sgml/ref/pgbench.sgml
+++ b/doc/src/sgml/ref/pgbench.sgml
@@ -1509,7 +1509,7 @@ f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
For example, <literal>random_zipfian(1, ..., 2.5)</literal> produces
the value <literal>1</literal> about <literal>(2/1)**2.5 =
5.66</literal> times more frequently than <literal>2</literal>, which
- itself is produced <literal>(3/2)*2.5 = 2.76</literal> times more
+ itself is produced <literal>(3/2)**2.5 = 2.76</literal> times more
frequently than <literal>3</literal>, and so on.
</para>
</listitem>