Tweak a comment
authortb <tb@openbsd.org>
Mon, 20 Jun 2022 19:42:58 +0000 (19:42 +0000)
committertb <tb@openbsd.org>
Mon, 20 Jun 2022 19:42:58 +0000 (19:42 +0000)
lib/libcrypto/bn/bn_kron.c

index 774e9ce..15033ff 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bn_kron.c,v 1.8 2022/06/20 19:38:25 tb Exp $ */
+/* $OpenBSD: bn_kron.c,v 1.9 2022/06/20 19:42:58 tb Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.
  *
@@ -55,7 +55,7 @@
 
 #include "bn_lcl.h"
 
-/* least significant word */
+/* The least significant word of a BIGNUM. */
 #define BN_lsw(n) (((n)->top == 0) ? (BN_ULONG) 0 : (n)->d[0])
 
 /*