From 76a486fcbf0cda60448b40a04e509030e5eab5ef Mon Sep 17 00:00:00 2001 From: Eric Norris Date: Sun, 25 Feb 2018 13:37:27 -0500 Subject: [PATCH] Fix typo --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 66c47d1..75e0316 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ stream_copy_to_stream($native_file, $unicode_file); ## Usage ```php /** - * resource $stream` The stream to filter. - * string $to_encoding` The encoding to convert to. - * string $from_encoding` The encoding to convert from. Optional, defaults to mb_internal_encoding() - * int $read_write` See http://php.net/manual/en/function.stream-filter-append.php - * string|int $sub_char` The substitute character to use. Optional, defaults to mb_substitute_character() + * resource $stream The stream to filter. + * string $to_encoding The encoding to convert to. + * string $from_encoding The encoding to convert from. Optional, defaults to mb_internal_encoding() + * int $read_write See http://php.net/manual/en/function.stream-filter-append.php + * string|int $sub_char The substitute character to use. Optional, defaults to mb_substitute_character() */ stream_filter_append($stream, "convert.mbstring.$to_encoding/$from_encoding", $read_write, $sub_char); ```