Replace single confusing clause

I'm guessing "From one hand" was meant to be "On one hand," but the rest of the idiom is missing. So I've replaced the phrase, rather than rewrite the paragraph.
This commit is contained in:
David Michael Gregg 2017-12-05 15:54:00 -05:00 committed by GitHub
parent 4b02949e95
commit 8cfbb0542c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -80,7 +80,7 @@ While choosing a name try to use the most abstract word. Like `obj`, `data`, `va
Give them a try. A young ninja may wonder -- do such names make the code worse? Actually, yes! Give them a try. A young ninja may wonder -- do such names make the code worse? Actually, yes!
From one hand, the variable name still means something. It says what's inside the variable: a string, a number or something else. But when an outsider tries to understand the code, he'll be surprised to see that there's actually no information at all! Sure, the variable name still means something. It says what's inside the variable: a string, a number or something else. But when an outsider tries to understand the code, he'll be surprised to see that there's actually no information at all!
Indeed, the value type is easy to find out by debugging. But what's the meaning of the variable? Which string/number does it store? There's just no way to figure out without a good meditation! Indeed, the value type is easy to find out by debugging. But what's the meaning of the variable? Which string/number does it store? There's just no way to figure out without a good meditation!