diff options
| author | David <daullmer@gmail.com> | 2020-06-07 18:10:08 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-07 18:10:08 +0200 |
| commit | cefa9d3c086fd01b6f05080fa272fcf1f76158f2 (patch) | |
| tree | c7fceedc0054bff814ea9476d1a61cad50b9177a /Jellyfin.Api/Helpers/RequestHelpers.cs | |
| parent | 7fa374f8a2560cd1c58584b3d5b0567c91ef4138 (diff) | |
Add default values for parameters and fix spelling
Diffstat (limited to 'Jellyfin.Api/Helpers/RequestHelpers.cs')
| -rw-r--r-- | Jellyfin.Api/Helpers/RequestHelpers.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Helpers/RequestHelpers.cs b/Jellyfin.Api/Helpers/RequestHelpers.cs index 6c661e2d3..9f4d34f9c 100644 --- a/Jellyfin.Api/Helpers/RequestHelpers.cs +++ b/Jellyfin.Api/Helpers/RequestHelpers.cs @@ -8,10 +8,10 @@ namespace Jellyfin.Api.Helpers public static class RequestHelpers { /// <summary> - /// Splits a string at a seperating character into an array of substrings. + /// Splits a string at a separating character into an array of substrings. /// </summary> /// <param name="value">The string to split.</param> - /// <param name="separator">The char that seperates the substrings.</param> + /// <param name="separator">The char that separates the substrings.</param> /// <param name="removeEmpty">Option to remove empty substrings from the array.</param> /// <returns>An array of the substrings.</returns> internal static string[] Split(string value, char separator, bool removeEmpty) |
