From f3ad27e3e7eba2204e022ec175a981e6ccb97548 Mon Sep 17 00:00:00 2001 From: Eugene Leonovich Date: Fri, 18 Dec 2020 22:14:07 +0100 Subject: [PATCH] Tweak README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 163756e..daa1493 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Here is a list of type-specific packing methods: $packer->packNil(); // MP nil $packer->packBool(true); // MP bool $packer->packInt(42); // MP int -$packer->packFloat(M_PI); // MP float +$packer->packFloat(M_PI); // MP float (32 or 64) $packer->packFloat32(M_PI); // MP float 32 $packer->packFloat64(M_PI); // MP float 64 $packer->packStr('foo'); // MP str