poke-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 05/12] libpoke/pkl-rt.pk: Fix typo s/gigi/gibi/


From: Jose E. Marchesi
Subject: Re: [PATCH 05/12] libpoke/pkl-rt.pk: Fix typo s/gigi/gibi/
Date: Thu, 27 May 2021 13:51:14 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux)

This is OK for both master and maint/poke-1 as obvious.
Thanks!


> 2021-05-22  Mohammad-Reza Nabipoor  <mnabipoor@gnu.org>
>
>       * libpoke/pkl-rt.pk (_pkl_unit_name): Fix typo. s/gigi/gibi/
>       (_pkl_unit_gibibit): Likewise.
>       (_pkl_unit_gibibyte): Likewise.
> ---
>  ChangeLog         | 6 ++++++
>  libpoke/pkl-rt.pk | 8 ++++----
>  2 files changed, 10 insertions(+), 4 deletions(-)
>
> diff --git a/ChangeLog b/ChangeLog
> index 8f04b03a..f668ffc3 100644
> --- a/ChangeLog
> +++ b/ChangeLog
> @@ -1,3 +1,9 @@
> +2021-05-22  Mohammad-Reza Nabipoor  <mnabipoor@gnu.org>
> +
> +     * libpoke/pkl-rt.pk (_pkl_unit_name): Fix typo. s/gigi/gibi/
> +     (_pkl_unit_gibibit): Likewise.
> +     (_pkl_unit_gibibyte): Likewise.
> +
>  2021-05-22  Mohammad-Reza Nabipoor  <mnabipoor@gnu.org>
>  
>       * libpoke/pvm.jitter (sconc): Replace `pvm_make_string` with
> diff --git a/libpoke/pkl-rt.pk b/libpoke/pkl-rt.pk
> index 034a397a..a272d045 100644
> --- a/libpoke/pkl-rt.pk
> +++ b/libpoke/pkl-rt.pk
> @@ -269,8 +269,8 @@ var _pkl_unit_kibibit = _pkl_unit_bit * 1024;
>  var _pkl_unit_kibibyte = _pkl_unit_byte * 1024;
>  var _pkl_unit_mebibit = _pkl_unit_kibibit * 1024;
>  var _pkl_unit_mebibyte = _pkl_unit_kibibyte * 1024;
> -var _pkl_unit_gigibit = _pkl_unit_mebibit * 1024;
> -var _pkl_unit_gigibyte = _pkl_unit_mebibyte * 1024;
> +var _pkl_unit_gibibit = _pkl_unit_mebibit * 1024;
> +var _pkl_unit_gibibyte = _pkl_unit_mebibyte * 1024;
>  
>  fun _pkl_unit_name = (uint<64> bits) string:
>   {
> @@ -300,9 +300,9 @@ fun _pkl_unit_name = (uint<64> bits) string:
>         return "Mib";
>      if (bits == _pkl_unit_mebibyte)
>         return "MiB";
> -    if (bits == _pkl_unit_gigibit)
> +    if (bits == _pkl_unit_gibibit)
>         return "Gib";
> -    if (bits == _pkl_unit_gigibyte)
> +    if (bits == _pkl_unit_gibibyte)
>         return "GiB";
>  
>      return "";



reply via email to

[Prev in Thread] Current Thread [Next in Thread]