comment style fix

This commit is contained in:
Jacek Sieka 2022-04-07 09:52:36 +02:00
parent e656ad40d1
commit c05f75a8da
No known key found for this signature in database
GPG Key ID: A1B09461ABB656B8
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@
# with a recursive tree structure.
# On the other side, returning a `var array[N div 2, uint64]` is problematic at the moment.
# - Compile-time computation is possible while due to the previous issue
# an array backend would be required to use var openarray[uint64]
# an array backend would be required to use var openArray[uint64]
# i.e. pointers.
# - Note that while shift-right and left can easily be done an array of bytes
# this would have reduced performance compared to moving 64-bit words.
@ -180,7 +180,7 @@ template applyHiLo*(a, b: UintImpl | IntImpl, c: untyped): untyped =
res.hi = c(a.hi, b.hi)
res.lo = c(a.lo, b.lo)
res
template leastSignificantWord*(num: SomeInteger): auto =
num