It's safer to use ' instead of ' in inspection descriptions because ' became the part of the HTML standard only in 5 version.

This commit is contained in:
Semyon Proshev
2016-11-23 15:02:24 +03:00
parent 0434c65c21
commit 680b755c89
10 changed files with 11 additions and 11 deletions
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects when there aren&apos;t all abstract properties/methods are defined in subclass
This inspection detects when there aren&#39;t all abstract properties/methods are defined in subclass
</body>
</html>
@@ -1,6 +1,6 @@
<html>
<body>
This inspection highlights too broad exception clauses such as
no exception class specified, or specified as &apos;Exception&apos;.
no exception class specified, or specified as &#39;Exception&#39;.
</body>
</html>
@@ -1,6 +1,6 @@
<html>
<body>
This inspection highlights comparisons with None. That type of comparisons
should always be done with &apos;is&apos; or &apos;is not&apos;, never the equality operators.
should always be done with &#39;is&#39; or &#39;is not&#39;, never the equality operators.
</body>
</html>
@@ -1,6 +1,6 @@
<html>
<body>
Enable this inspection if you need your code to be compatible with a range of Python versions (for example, if you&apos;re building a
Enable this inspection if you need your code to be compatible with a range of Python versions (for example, if you&#39;re building a
library).
The range of Python versions with which the code needs to be compatible can be specified in the inspection settings.
</body>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects when a custom exception class is raised but doesn&apos;t inherit from the builtin &quot;Exception&quot; class.
This inspection detects when a custom exception class is raised but doesn&#39;t inherit from the builtin &quot;Exception&quot; class.
</body>
</html>
@@ -1,6 +1,6 @@
<html>
<body>
This inspection detects mismatched parameters in a docstring.
Please note that it doesn&apos;t warn you of missing parameters, if none of them is mentioned in a docstring.
Please note that it doesn&#39;t warn you of missing parameters, if none of them is mentioned in a docstring.
</body>
</html>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects cases when first parameter, such as &apos;self&apos; or &apos;cls&apos;, is reassigned in a method.
In most cases imaginable, there&apos;s no point in such reassignment, and it indicates an error.
This inspection detects cases when first parameter, such as &#39;self&#39; or &#39;cls&#39;, is reassigned in a method.
In most cases imaginable, there&#39;s no point in such reassignment, and it indicates an error.
</body></html>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection looks for certain decorators that don&apos;t nest well.
This inspection looks for certain decorators that don&#39;t nest well.
</body>
</html>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection detects file contains non-ASCII characters and doesn&apos;t have an encoding declaration at the top.
This inspection detects file contains non-ASCII characters and doesn&#39;t have an encoding declaration at the top.
</body>
</html>
@@ -1,5 +1,5 @@
<html>
<body>
This inspection warns if a protected member is access outside the class or a descendant of the class where it&apos;s defined.
This inspection warns if a protected member is access outside the class or a descendant of the class where it&#39;s defined.
</body>
</html>