Skip to content

Commit b6ca263

Browse files
author
Hardik Aggarwal
authored
Update decimal_to_binary.py (TheAlgorithms#2185)
"an Integer" instead of "a Integer"
1 parent aa01114 commit b6ca263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conversions/decimal_to_binary.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
def decimal_to_binary(num: int) -> str:
55

66
"""
7-
Convert a Integer Decimal Number to a Binary Number as str.
7+
Convert an Integer Decimal Number to a Binary Number as str.
88
>>> decimal_to_binary(0)
99
'0b0'
1010
>>> decimal_to_binary(2)

0 commit comments

Comments
 (0)