Browse Source
Merge pull request #2400 from FaithLV/master
Fix typos in BringIntoView() parameters
pull/2416/head
Steven Kirk
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/Avalonia.Controls/ControlExtensions.cs
|
|
|
@ -15,7 +15,7 @@ namespace Avalonia.Controls |
|
|
|
public static class ControlExtensions |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// Tries to being the control into view.
|
|
|
|
/// Tries to bring the control into view.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="control">The control.</param>
|
|
|
|
public static void BringIntoView(this IControl control) |
|
|
|
@ -26,7 +26,7 @@ namespace Avalonia.Controls |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Tries to being the control into view.
|
|
|
|
/// Tries to bring the control into view.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="control">The control.</param>
|
|
|
|
/// <param name="rect">The area of the control to being into view.</param>
|
|
|
|
|