From 929553dc8df122916d89d97afb4adc2ccb141e29 Mon Sep 17 00:00:00 2001
From: Phil Smith <phil.h.smith@gmail.com>
Date: Fri, 1 Sep 2017 23:11:54 -0700
Subject: [PATCH] At most 256 bytes will be reserved

---
 doc/ca65.sgml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/ca65.sgml b/doc/ca65.sgml
index 33acc0a80..cb4fbb500 100644
--- a/doc/ca65.sgml
+++ b/doc/ca65.sgml
@@ -1695,7 +1695,7 @@ either a string or an expression.
   Example:
 
   <tscreen><verb>
-        ; Reserve space for some data, but 256 bytes minimum
+        ; Reserve space for some data, but 256 bytes maximum
        	savearea:       .min (.sizeof (foo), 256)
   </verb></tscreen>