aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/keep_data_small.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/keep_data_small.txt b/docs/keep_data_small.txt
index 55f4fc95a..f88fe07b0 100644
--- a/docs/keep_data_small.txt
+++ b/docs/keep_data_small.txt
@@ -65,7 +65,7 @@ archival/libunarchive/decompress_unzip.c:
65(see the rest of the file to get the idea) 65(see the rest of the file to get the idea)
66 66
67This example completely eliminates globals in that module. 67This example completely eliminates globals in that module.
68Required memory is allocated in inflate_gunzip() [its main module] 68Required memory is allocated in unpack_gz_stream() [its main module]
69and then passed down to all subroutines which need to access 'globals' 69and then passed down to all subroutines which need to access 'globals'
70as a parameter. 70as a parameter.
71 71