Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

Commit

Permalink
Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
fsobolev committed Oct 6, 2023
1 parent eda21a0 commit 714c296
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Examples/Avalonia/app.manifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<!-- This manifest is used on Windows only.
Don't remove it as it might cause problems with window transparency and embeded controls.
Don't remove it as it might cause problems with window transparency and embedded controls.
For more details visit https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests -->
<assemblyIdentity version="1.0.0.0" name="AvaloniaMPV.Desktop"/>

Expand Down
12 changes: 6 additions & 6 deletions Nickvision.MPVSharp/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ public void SetProperty(string name, Node node)
}

/// <summary>
/// Sets property using <see cref="MPVFormat.Flag"/> format asynchroniously
/// Sets property using <see cref="MPVFormat.Flag"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand All @@ -317,7 +317,7 @@ public void SetPropertyAsync(ulong replyUserdata, string name, bool data)
}

/// <summary>
/// Sets property using <see cref="MPVFormat.Int64"/> format asynchroniously
/// Sets property using <see cref="MPVFormat.Int64"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand All @@ -333,7 +333,7 @@ public void SetPropertyAsync(ulong replyUserdata, string name, bool data)
}

/// <summary>
/// Sets property using <see cref="MPVFormat.Double"/> format asynchroniously
/// Sets property using <see cref="MPVFormat.Double"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand All @@ -349,7 +349,7 @@ public void SetPropertyAsync(ulong replyUserdata, string name, bool data)
}

/// <summary>
/// Sets property using <see cref="MPVFormat.String"/> format asynchroniously
/// Sets property using <see cref="MPVFormat.String"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand All @@ -365,7 +365,7 @@ public void SetPropertyAsync(ulong replyUserdata, string name, bool data)
}

/// <summary>
/// Sets property using <see cref="MPVFormat.Node"/> format asynchroniously
/// Sets property using <see cref="MPVFormat.Node"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand Down Expand Up @@ -458,7 +458,7 @@ public void GetProperty(string name, out Node node)
}

/// <summary>
/// Gets property using <see cref="MPVFormat.Node"/> format asynchroniously
/// Gets property using <see cref="MPVFormat.Node"/> format asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand Down
2 changes: 1 addition & 1 deletion Nickvision.MPVSharp/Internal/MPVClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ public MPVError CommandAsync(ulong replyUserdata, string?[] command)
public MPVError GetPropertyOSDString(string name, out string data) => mpv_get_property(Handle, name, MPVFormat.OSDString, out data);

/// <summary>
/// Gets property asynchroniously
/// Gets property asynchronously
/// </summary>
/// <param name="replyUserdata">Reply Id</param>
/// <param name="name">Property name</param>
Expand Down

0 comments on commit 714c296

Please sign in to comment.