Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6261d0e

Browse files
keisei77trekhleb
authored andcommitted
[Fix] Capitalization issues of doubly linked list. (trekhleb#282)
1 parent3064a79 commit6261d0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)

[8]ページ先頭

©2009-2025 Movatter.jp