vote up 22 vote down star
5

I've come across various questions with incorrect use of terminology in them. The primary abuses (in C# questions) are:

  • Referring to "C# 3.5" (which doesn't exist) instead of "C# 3.0" or ".NET 3.5"
  • Referring to the conditional operator as the ternary operator (it's a ternary operator, and happens to be the only one, but that's not its name)
  • Getting confused between using directives (which make types available without fully qualifying the namespaces) and using statements (which create a try/finally block and call Dispose)

Now, if you look at the tags for C#, you'll see that "C#3.5" has (at present) 13 hits, whereas "C#3.0" has only 7 hits. A language version which doesn't exist has more references than the current one!

So far, I've been editing question bodies, tags and titles to correct this - but I'm not sure now. If a misunderstanding is so common that more people know the incorrect term than the correct one, is my "fixing" of the question going to be counterproductive for anyone performing a search?

Or should we try to achieve such a level of accuracy that the incorrect term will get no inappropriate search hits, prompting the user to try again (and hopefully get the right term)? In this case I'm happy to go and retag all "C#3.5" questions as "C#3.0" for example.

I'm aware that I'm a particularly picky person when it comes to terminology, by the way. Maybe no-one else really cares very much ;)


3  
If there is only one ternary operator, you can call it the ternary operator. It's not its name, but it's correct and completely unambiguous. – CesarB Oct 25 '08 at 21:13
2  
It's unambiguous at the moment, but it's not descriptive and it could easily become ambiguous in the future. Why not call it by the right name to start with? – Jon Skeet Oct 26 '08 at 8:40
2  
I am so glad that other people have a thing for terminology being correct. – Jeff Yates Nov 21 '08 at 15:03
1  
I'm sorry, the correct term for "terminology" is "sockeye salmon." Please update the question title. – mseery Nov 23 '08 at 0:36
2  
If they add another ternary operator, the current one will still be the ternary operator and the new one will be called the other ternary operator. Where's the confusion? – oxbow_lakes Jun 27 at 13:57
show 2 more comments

migrated to meta.stackoverflow.com by Bill the Lizard Aug 21 at 16:28

Browse other questions tagged or ask your own question.