Skip to content

Commit 0d0b279

Browse files
authored
Update README.md
1 parent 3e67a4e commit 0d0b279

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ to get the head and the tail in constant time.
99
## List
1010

1111
`List` is a single linked immutable list.
12-
*Usage:
12+
* Usage:
1313
```julia
1414
a = List{Int}() # Create a list of the given type.
1515
b = list(1,2,3) # Creates a list of 3 elements
1616
c = 1 <| b # Creates a new list C using the cons opertor <| with b as the tail.
1717
```
18-
*Utility functions:
18+
* Utility functions:
1919
```julia
2020

2121
""" (length(lst1)), O(1) if either list is empty.. needs improvment """

0 commit comments

Comments
 (0)