Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0d843f

Browse files
committed
Fixed small ambiguity and made small modifications to Chris' contribution
1 parent c847a20 commit d0d843f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

web-debug.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
1. **Blame yourself.**
44
* In debugging, having an ego will only cause you to work longer and harder to solve a bug. Be humble; accept your humanity. Make 100% sure that the way you're attacking a problem is _actually_ isolating the problem.
5-
* Are you able to reproduce the problem every single time you try? People use testing frameworks to not only replicate bugs but to make sure ether bug actually goes away *
5+
* Are you able to reproduce the problem every single time you try? People use testing frameworks to not only replicate bugs, but to make sure the bug actually goes away *
66
2. **Blame your tools.**
77
* Have you got cache enabled? Are you working in IE6? Try to ensure that your tools aren't giving you false-positives or false-negatives. Use an HTTP proxy like [Charles Proxy](http://www.charlesproxy.com/) to debug HTTP requests.
88
3. **Blame your framework.**
@@ -15,7 +15,7 @@
1515
* Be sure to disable any caching technologies to ensure you're always looking at the most recent data, and that your _actual_ code is executing every time (not some cached version).
1616
* Have you tried turning it off & on again? =)
1717
5. **Blame your language.**
18-
* Is the code you're debugging very complex or novel? Maybe it's a bug (highly likely)
18+
* Is the code you're debugging very complex or novel? Maybe it's a bug in your language (highly unlikely)
1919
* Always break the problem down into as small a piece as you can - it's probably you
2020
6. **Blame the world.**
2121
* Have you tried logging a bug?

0 commit comments

Comments
 (0)