Removed reference to old string syntax in the documentation.
1 files changed, 2 insertions(+), 2 deletions(-)

M jasm/docs/jasm.md
M jasm/docs/jasm.md +2 -2
@@ 2854,8 2854,8 @@ The following example measures the size 
 		section code, "string", *
 		{
 			define byte[] str = {
-				P"LONG STRING DATA STORED HERE... ",
-				P"NO ONE KNOWS WHERE IT ENDS..."
+				"LONG STRING DATA STORED HERE... ",
+				"NO ONE KNOWS WHERE IT ENDS..."
 			}
 		}
 	}