Skip to content

Commit 482448b

Browse files
author
Eduardo Bar
committed
docs: remove misleading link from Don't over-optimize section
The link to github.com/petkaantonov/bluebird/wiki/Optimization-killers was misleading — it pointed to an outdated Bluebird Promise library wiki page about V8 optimization killers that is no longer maintained or accurate for modern JavaScript engines. Replace with a general recommendation to use browser developer tools and performance profiling to identify real bottlenecks, which is more actionable and up-to-date advice. Closes ryanmcdermott#719
1 parent 5311f64 commit 482448b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -977,10 +977,9 @@ function combine(val1, val2) {
977977
### Don't over-optimize
978978

979979
Modern browsers do a lot of optimization under-the-hood at runtime. A lot of
980-
times, if you are optimizing then you are just wasting your time. [There are good
981-
resources](https://github.com/petkaantonov/bluebird/wiki/Optimization-killers)
982-
for seeing where optimization is lacking. Target those in the meantime, until
983-
they are fixed if they can be.
980+
times, if you are optimizing then you are just wasting your time. Use browser
981+
developer tools and performance profiling to identify real bottlenecks before
982+
optimizing. Target those in the meantime, until they are fixed if they can be.
984983

985984
**Bad:**
986985

0 commit comments

Comments
 (0)