Skip to content

Commit 969a5c6

Browse files
committed
Fixed comment.
1 parent 15b8f5e commit 969a5c6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Diff for: src/main/java/s0002.add.two.numbers/Solution.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
package s0002.add.two.numbers;
22

3-
/**
4-
* Definition for singly-linked list. public class ListNode { int val; ListNode next; ListNode(int
5-
* x) { val = x; } }
3+
/*
4+
* Definition for singly-linked list.
5+
* public class ListNode {
6+
* int val;
7+
* ListNode next;
8+
* ListNode(int x) { val = x; }
9+
* }
610
*/
711
public class Solution {
812
public ListNode addTwoNumbers(ListNode l1, ListNode l2) {

0 commit comments

Comments
 (0)