On every project I create, Eclipse gaves me this warning at the package's declaration:
"[package_name] has incorrect spelling"
For instance, I wrote these few lines:
package hello; //<---
public class Hello //<---
{
public Hello() //<---
{
}
public static void main(String[] args)
{
System.out.println("Hello");
}
}
On line one I've got that warning but also on class name declaration and on the constructor declaration.
I can freely run this program so It's not blocking me but I wish to know the meaning of that warning.