You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit contains following fixes:
- Trailing whitespace
Usually, we don't want to have trailing whitespaces at end of
line. It makes diff uglier and maintenance of code harder.
- No newline at end of file
Historically, POSIX standard requires to have a newline at the end
of non-empty file, which shouldn't proceeds by a backslash[1].
[1]: https://gcc.gnu.org/legacy-ml/gcc/2003-11/msg01568.html
Copy file name to clipboardExpand all lines: docs/datastructure.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ We can store anything in the list, so first we are going to add another list *b
78
78
79
79
.. index:: sort
80
80
81
-
Above you can see how we used the *a.extend()* method to extend the list. To sort any list we have *sort()* method. The *sort()* method will only work if elements in the list are comparable. We will remove the list b from the list and then sort.
81
+
Above you can see how we used the *a.extend()* method to extend the list. To sort any list we have *sort()* method. The *sort()* method will only work if elements in the list are comparable. We will remove the list b from the list and then sort.
82
82
83
83
::
84
84
@@ -525,7 +525,7 @@ changes the variable outside of the function.
0 commit comments