Skip to content

Commit 915e8d9

Browse files
committed
Fix doctest of shorter printing
1 parent 9af0ffe commit 915e8d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/FieldFlags.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,10 +505,10 @@ julia> bits = MyBits(1,2,3)
505505
MyBits(a: 0x1, b: 0x2, c: true)
506506
507507
julia> bits.a
508-
0x0000000000000001
508+
0x01
509509
510510
julia> bits.b
511-
0x0000000000000002
511+
0x02
512512
513513
julia> bits.c
514514
true

0 commit comments

Comments
 (0)