瀏覽代碼

docs: internals: fix ASCII art equations

Marian Beermann 8 年之前
父節點
當前提交
cf77aa53d7
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      docs/internals/data-structures.rst

+ 2 - 3
docs/internals/data-structures.rst

@@ -506,7 +506,7 @@ The chunks cache is a HashIndex_.
 Indexes / Caches memory usage
 -----------------------------
 
-Here is the estimated memory usage of |project_name| - it's complicated:
+Here is the estimated memory usage of |project_name| - it's complicated::
 
   chunk_count ~= total_file_size / 2 ^ HASH_MASK_BITS
 
@@ -520,13 +520,12 @@ Here is the estimated memory usage of |project_name| - it's complicated:
              = chunk_count * 164 + total_file_count * 240
 
 Due to the hashtables, the best/usual/worst cases for memory allocation can
-be estimated like that:
+be estimated like that::
 
   mem_allocation = mem_usage / load_factor  # l_f = 0.25 .. 0.75
 
   mem_allocation_peak = mem_allocation * (1 + growth_factor)  # g_f = 1.1 .. 2
 
-
 All units are Bytes.
 
 It is assuming every chunk is referenced exactly once (if you have a lot of