aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/freespace/freespace.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2021-12-22 07:52:18 +0100
committerPeter Eisentraut <peter@eisentraut.org>2021-12-22 07:52:18 +0100
commit962951be3ce319052df014e0d23b6e7626df587f (patch)
tree93da4f9ce0d58eb11d4006cd5c0be4c93ffb3a30 /src/backend/storage/freespace/freespace.c
parent2e577c94466fde77d24cd44dc47059cf9cf392a4 (diff)
downloadpostgresql-962951be3ce319052df014e0d23b6e7626df587f.tar.gz
postgresql-962951be3ce319052df014e0d23b6e7626df587f.zip
Fix typo in code comment
Reported-by: Kevin Zheng <1642644905@qq.com> Discussion: https://www.postgresql.org/message-id/flat/17341-d913ddb626c5c08c%40postgresql.org
Diffstat (limited to 'src/backend/storage/freespace/freespace.c')
-rw-r--r--src/backend/storage/freespace/freespace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/freespace/freespace.c b/src/backend/storage/freespace/freespace.c
index 09d4b16067d..839d81662f0 100644
--- a/src/backend/storage/freespace/freespace.c
+++ b/src/backend/storage/freespace/freespace.c
@@ -67,7 +67,7 @@
/*
* Depth of the on-disk tree. We need to be able to address 2^32-1 blocks,
* and 1626 is the smallest number that satisfies X^3 >= 2^32-1. Likewise,
- * 216 is the smallest number that satisfies X^4 >= 2^32-1. In practice,
+ * 256 is the smallest number that satisfies X^4 >= 2^32-1. In practice,
* this means that 4096 bytes is the smallest BLCKSZ that we can get away
* with a 3-level tree, and 512 is the smallest we support.
*/