From 07c98537cae5c88cff0496fb8ef985771218fe1f Mon Sep 17 00:00:00 2001 From: "Bernhard F. Brodowsky" Date: Fri, 7 Feb 2020 19:57:15 -0500 Subject: Clarified documentation in rb_integer_unpack [ci skip] I struggled figuring out which of the pack/unpack functions goes into which direction and the two first sentences were of the documentation were: * Import an integer into a buffer. * Export an integer into a buffer. It sounds like both of them go from a ruby integer to a buffer because both use "into". So I fixed it and went to "Import an integer from a buffer". I find this much more clear. --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bignum.c') diff --git a/bignum.c b/bignum.c index 78c5681508..e9bb5780b5 100644 --- a/bignum.c +++ b/bignum.c @@ -3611,7 +3611,7 @@ rb_integer_pack(VALUE val, void *words, size_t numwords, size_t wordsize, size_t } /* - * Import an integer into a buffer. + * Import an integer from a buffer. * * [words] buffer to import. * [numwords] the size of given buffer as number of words. -- cgit v1.2.3