Skip to content

Commit 79de926

Browse files
committed
style: fix trailing spaces and add newline at EOF
1 parent 17c118c commit 79de926

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/thealgorithms/searches/LinearSearch.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import com.thealgorithms.devutils.searches.SearchAlgorithm;
44

55
/**
6-
* Linear Search is a simple searching algorithm that checks each element
6+
* Linear Search is a simple searching algorithm that checks each element
77
* of the array sequentially until the target value is found or the array ends.
88
*
99
* <p>It works for both sorted and unsorted arrays.</p>
@@ -49,4 +49,4 @@ public <T extends Comparable<T>> int find(T[] array, T value) {
4949

5050
return -1;
5151
}
52-
}
52+
}

0 commit comments

Comments
 (0)