Skip to content

Commit 6261d0e

Browse files
keisei77trekhleb
authored andcommitted
[Fix] Capitalization issues of doubly linked list. (trekhleb#282)
1 parent 3064a79 commit 6261d0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/data-structures/doubly-linked-list/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Remove(head, value)
5858
head ← ø
5959
tail ← ø
6060
else
61-
head ← head.Next
61+
head ← head.next
6262
head.previous ← ø
6363
end if
6464
return true

src/data-structures/doubly-linked-list/README.ru-RU.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Remove(head, value)
5454
head ← ø
5555
tail ← ø
5656
else
57-
head ← head.Next
57+
head ← head.next
5858
head.previous ← ø
5959
end if
6060
return true

src/data-structures/doubly-linked-list/README.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Remove(head, value)
4545
head ← ø
4646
tail ← ø
4747
else
48-
head ← head.Next
48+
head ← head.next
4949
head.previous ← ø
5050
end if
5151
return true

0 commit comments

Comments
 (0)