Skip to content

Commit

Permalink
style: corrected a Smalltalk code critique.
Browse files Browse the repository at this point in the history
  • Loading branch information
hemalvarambhia committed Dec 24, 2023
1 parent 218a2e5 commit 91e14e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Math-Numerical/PMNewtonZeroFinder.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ PMNewtonZeroFinder class >> function: aBlock1 derivative: aBlock2 [
PMNewtonZeroFinder class >> with: precision [

| rootFinder |
rootFinder := PMNewtonZeroFinder new.
rootFinder := self new.
rootFinder desiredPrecision: precision.
^ rootFinder
]
Expand Down

0 comments on commit 91e14e3

Please sign in to comment.