From da4977f316e4a05be800e865b979c10d19436112 Mon Sep 17 00:00:00 2001 From: Martin Samesch Date: Thu, 21 Apr 2022 17:18:49 +0200 Subject: [PATCH] Typos --- appendices/filters.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appendices/filters.xml b/appendices/filters.xml index d67851efbc..59a4735de1 100644 --- a/appendices/filters.xml +++ b/appendices/filters.xml @@ -130,13 +130,13 @@ $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, ""); fwrite($fp, "bolded text enlarged to a

level 1 heading

\n"); fclose($fp); -/* Outputs: bolded text enlarged to a level 1 heading */ +/* Outputs: bolded text enlarged to a level 1 heading */ $fp = fopen('php://output', 'w'); stream_filter_append($fp, 'string.strip_tags', STREAM_FILTER_WRITE, array('b','i','u')); fwrite($fp, "bolded text enlarged to a

level 1 heading

\n"); fclose($fp); -/* Outputs: bolded text enlarged to a level 1 heading */ +/* Outputs: bolded text enlarged to a level 1 heading */ ?> ]]> @@ -206,7 +206,7 @@ fclose($fp); convert.quoted-printable-encode and convert.quoted-printable-decode Use of the decode version of this filter is equivalent to processing all stream - data through the quoted_printable_decode functions. + data through the quoted_printable_decode function. There is no function equivalent to convert.quoted-printable-encode. convert.quoted-printable-encode supports parameters given as an associative array. In addition to the parameters supported by @@ -444,7 +444,7 @@ echo "The compressed file is " . filesize('LICENSE.compressed') . " bytes long.\ /* Generates output: -The original text is 3288 characters long. +The original file is 3288 bytes long. The compressed file is 1488 bytes long. */