Skip to content

Commit

Permalink
fix examples
Browse files Browse the repository at this point in the history
Signed-off-by: martinvuyk <[email protected]>
  • Loading branch information
martinvuyk committed Dec 19, 2024
1 parent 8f501c7 commit 0df9c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/src/utils/write.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ fn _hex_digits_to_hex_chars(ptr: UnsafePointer[Byte], decimal: Scalar):
assert_equal("4f60", S(ptr=ptr, length=4))
memset_zero(ptr, len(items))
_hex_digits_to_hex_chars(ptr, UInt8(ord("Ö")))
assert_equal("xd6", S(ptr=ptr, length=2))
assert_equal("d6", S(ptr=ptr, length=2))
```
.
"""
Expand Down

0 comments on commit 0df9c64

Please sign in to comment.