doc: fix typo in BitVec.mul docstring (#5473)
Seems this was copy-pasted from `BitVec.neg`
This commit is contained in:
parent
5dea30f169
commit
b320dcfef9
1 changed files with 2 additions and 2 deletions
|
|
@ -269,8 +269,8 @@ Return the absolute value of a signed bitvector.
|
|||
protected def abs (x : BitVec n) : BitVec n := if x.msb then .neg x else x
|
||||
|
||||
/--
|
||||
Multiplication for bit vectors. This can be interpreted as either signed or unsigned negation
|
||||
modulo `2^n`.
|
||||
Multiplication for bit vectors. This can be interpreted as either signed or unsigned
|
||||
multiplication modulo `2^n`.
|
||||
|
||||
SMT-Lib name: `bvmul`.
|
||||
-/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue