diff --git a/docs/index.html b/docs/index.html
index 60e212a4b..e39adbc13 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -172,22 +172,22 @@ div.tip {margin-left : 5%;margin-right : 5%;padding-left: 2%; padding-right: 2%;
Example |
- | static and final |
+ Constants (static and final) |
^[A-Z]([A-Z0-9_]*[A-Z0-9])?$ The exception to the rule is for serialVersionUID. |
public static final int MAX_ROWS = 2; |
- | static only |
+ Static variables (static only) |
^[a-z][a-zA-Z0-9]*$ |
private static int numCreated = 0; |
- | non static |
+ Members (non static) |
^[a-z][a-zA-Z0-9]*$ |
private int mySize = 0; |
- | non static public |
+ Public members (non static public) |
^f[A-Z][a-zA-Z0-9]*$ |
public int fCMPField; |