doc: fix typo in BitVec.mul docstring (#5473)

Seems this was copy-pasted from `BitVec.neg`
This commit is contained in:
L 2024-09-25 20:11:46 -07:00 committed by GitHub
parent 5dea30f169
commit b320dcfef9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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`.
-/