Fixed a few warnings with XML comments

This commit is contained in:
Tamme Schichler 2013-01-24 01:26:33 +01:00
parent afefc93fc6
commit f0a9afacce
5 changed files with 6 additions and 6 deletions

View file

@ -322,9 +322,9 @@ namespace OpenTK
#region GetDisplay #region GetDisplay
/// <summary> /// <summary>
/// Gets the <see cref="DisplayDevice"/> for the specified <see cref="DeviceIndex"/>. /// Gets the <see cref="DisplayDevice"/> for the specified <see cref="DisplayIndex"/>.
/// </summary> /// </summary>
/// <param name="index">The <see cref="DeviceIndex"/> that defines the desired display.</param> /// <param name="index">The <see cref="DisplayIndex"/> that defines the desired display.</param>
/// <returns>A <see cref="DisplayDevice"/> or null, if no device corresponds to the specified index.</returns> /// <returns>A <see cref="DisplayDevice"/> or null, if no device corresponds to the specified index.</returns>
public static DisplayDevice GetDisplay(DisplayIndex index) public static DisplayDevice GetDisplay(DisplayIndex index)
{ {

View file

@ -410,7 +410,7 @@ namespace OpenTK
/// <param name="x">Scale factor for the x axis.</param> /// <param name="x">Scale factor for the x axis.</param>
/// <param name="y">Scale factor for the y axis.</param> /// <param name="y">Scale factor for the y axis.</param>
/// <param name="z">Scale factor for the z axis.</param> /// <param name="z">Scale factor for the z axis.</param>
/// <param name="result">A scale matrix.</returns> /// <param name="result">A scale matrix.</param>
public static void CreateScale(float x, float y, float z, out Matrix3 result) public static void CreateScale(float x, float y, float z, out Matrix3 result)
{ {
result = Identity; result = Identity;

View file

@ -410,7 +410,7 @@ namespace OpenTK
/// <param name="x">Scale factor for the x axis.</param> /// <param name="x">Scale factor for the x axis.</param>
/// <param name="y">Scale factor for the y axis.</param> /// <param name="y">Scale factor for the y axis.</param>
/// <param name="z">Scale factor for the z axis.</param> /// <param name="z">Scale factor for the z axis.</param>
/// <param name="result">A scale matrix.</returns> /// <param name="result">A scale matrix.</param>
public static void CreateScale(double x, double y, double z, out Matrix3d result) public static void CreateScale(double x, double y, double z, out Matrix3d result)
{ {
result = Identity; result = Identity;

View file

@ -613,7 +613,7 @@ namespace OpenTK
/// <param name="x">Scale factor for the x axis.</param> /// <param name="x">Scale factor for the x axis.</param>
/// <param name="y">Scale factor for the y axis.</param> /// <param name="y">Scale factor for the y axis.</param>
/// <param name="z">Scale factor for the z axis.</param> /// <param name="z">Scale factor for the z axis.</param>
/// <param name="result">A scale matrix.</returns> /// <param name="result">A scale matrix.</param>
public static void CreateScale(float x, float y, float z, out Matrix4 result) public static void CreateScale(float x, float y, float z, out Matrix4 result)
{ {
result = Identity; result = Identity;

View file

@ -821,7 +821,7 @@ namespace OpenTK
/// <summary> /// <summary>
/// Called when a keybord key is released. /// Called when a keybord key is released.
/// </summary> /// </summary>
/// <param name="e">The <see cref="OpenTK.KeyboardKeyEventArgs"/> for this event.</param> /// <param name="e">The <see cref="OpenTK.Input.KeyboardKeyEventArgs"/> for this event.</param>
protected virtual void OnKeyUp(KeyboardKeyEventArgs e) protected virtual void OnKeyUp(KeyboardKeyEventArgs e)
{ {
KeyUp(this, e); KeyUp(this, e);