diff --git a/python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html b/python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html index 2a8c9d48a9c7..493119f3639d 100644 --- a/python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html +++ b/python/pluginResources/inspectionDescriptions/CythonUsageBeforeDeclarationInspection.html @@ -2,12 +2,12 @@
Reports Cython variables being referenced before declaration.
Example:
-++cdef int c_x print(c_x, c_y) # Variable 'c_y' is used before its declaration cdef int c_y = 0 -