Tidy up BuildInfo documentation

This commit is contained in:
Vinnie Falco
2013-07-30 18:08:49 -07:00
parent 5959c4e312
commit db08a5946f
2 changed files with 32 additions and 19 deletions

View File

@@ -20,7 +20,7 @@ struct BuildInfo
The version string is formatted thusly:
<major> '.' <minor> '.' ['-' <suffix>]
<major> '.' <minor> ['-' <suffix>]
The minor version number is always padded with leading zeroes
to bring the number of characters up to exactly three. For example,
@@ -52,8 +52,8 @@ struct BuildInfo
/** The server version's components. */
struct Version
{
int vmajor; // 0+
int vminor; // 0-999
int vmajor; // 0+
int vminor; // 0-999
String suffix; // Can be empty
//----