Skip to content

Commit 695c6af

Browse files
improve comment
1 parent 37a0525 commit 695c6af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdomain/value/cdomains/int/bitfieldDomain.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ module BitfieldFunctor (Ints_t : IntOps.IntOps): Bitfield_SOverflow with type in
211211

212212
(* converts the (zs,os) mask representation to a human readable string of the form 0b(0|1|?|⊥)...(0|1|?|⊥)+. *)
213213
(* Example: 0b0...01? should mean that the last bit is unknown, while all other bits are exactly known *)
214-
(* The ... (dots) are used to indicate an infinte repetition of the last bit *)
214+
(* The ... (dots) are used to indicate an infinte repetition of the previous bit *)
215215
let rec create_pretty_bf_string o_mask z_mask known_bitmask invalid_bitmask acc =
216216
let current_bit_known = (known_bitmask &: Ints_t.one) = Ints_t.one in
217217
let current_bit_invalid = (invalid_bitmask &: Ints_t.one) = Ints_t.one in

0 commit comments

Comments
 (0)