
Wrong XML Comment on the W property in Vector4[d]
Posted Saturday, 1 August, 2009 - 12:44 by Anonymous| Project: | The Open Toolkit library |
| Version: | 0.9.9-1 |
| Component: | Documentation |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed |
Jump to:
Description
In both Vector4 and Vector4d the W propertie have a wrong XML comment.
/// <summary>
/// The X component of the Vector4d.
/// </summary>
public double X;
/// <summary>
/// The Y component of the Vector4d.
/// </summary>
public double Y;
/// <summary>
/// The Z component of the Vector4d.
/// </summary>
public double Z;
/// <summary>
/// The Z component of the Vector4d.
/// </summary>
public double W;shoeld be...
/// <summary>
/// The X component of the Vector4d.
/// </summary>
public double X;
/// <summary>
/// The Y component of the Vector4d.
/// </summary>
public double Y;
/// <summary>
/// The Z component of the Vector4d.
/// </summary>
public double Z;
/// <summary>
/// The W component of the Vector4d.
/// </summary>
public double W;Just a mini Error, but could be irritating for people who try to compile a help file for OpenTK.


Comments
#1
Fixed on 0.9.8 and trunk on rev. 2020 and 2021, respectively.
#2
If you encounter any other issues in documentation, please report them.
Right now, OpenTK trunk contains close to 500 known documentation issues, down from ~2500 on the previous version. We will fix every single one before OpenTK 1.0 is released.
#3
Closing bugs fixed in 0.9.8-2 and 0.9.9-1.
#4