Skip to content

Commit a8f37a8

Browse files
Add Wikipedia reference to LinearEquation
1 parent 75434a8 commit a8f37a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/com/thealgorithms/maths/LinearEquation.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
/**
44
* Solves linear equations of the form ax + b = 0.
55
*/
6+
7+
/**
8+
* Solves linear equations of the form ax + b = 0.
9+
*
10+
* @see <a href="https://en.wikipedia.org/wiki/Linear_equation">Linear equation (Wikipedia)</a>
11+
*/
612
public final class LinearEquation {
713

814
private LinearEquation() {

0 commit comments

Comments
 (0)