Browse Source

Fixed invalid doc references.

pull/992/head
Steven Kirk 9 years ago
parent
commit
4fa6c1e7f4
  1. 6
      src/Avalonia.Controls/AppBuilderBase.cs

6
src/Avalonia.Controls/AppBuilderBase.cs

@ -55,8 +55,7 @@ namespace Avalonia.Controls
public Action<TAppBuilder> AfterSetupCallback { get; private set; } = builder => { }; public Action<TAppBuilder> AfterSetupCallback { get; private set; } = builder => { };
/// <summary> /// <summary>
/// Gets or sets a method to call before <see cref="Start{TMainWindow}"/> is called on the /// Gets or sets a method to call before Startis called on the <see cref="Application"/>.
/// <see cref="Application"/>.
/// </summary> /// </summary>
public Action<TAppBuilder> BeforeStartCallback { get; private set; } = builder => { }; public Action<TAppBuilder> BeforeStartCallback { get; private set; } = builder => { };
@ -94,8 +93,7 @@ namespace Avalonia.Controls
protected TAppBuilder Self => (TAppBuilder) this; protected TAppBuilder Self => (TAppBuilder) this;
/// <summary> /// <summary>
/// Registers a callback to call before <see cref="Start{TMainWindow}"/> is called on the /// Registers a callback to call before Start is called on the <see cref="Application"/>.
/// <see cref="Application"/>.
/// </summary> /// </summary>
/// <param name="callback">The callback.</param> /// <param name="callback">The callback.</param>
/// <returns>An <typeparamref name="TAppBuilder"/> instance.</returns> /// <returns>An <typeparamref name="TAppBuilder"/> instance.</returns>

Loading…
Cancel
Save