We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 830ab85 commit 4466e7dCopy full SHA for 4466e7d
src/Elastic.Markdown/Helpers/IdExtensions.cs
@@ -9,5 +9,5 @@ namespace Elastic.Markdown.Helpers;
9
10
public static class ShortId
11
{
12
- public static string Create(params string[] text) => Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(string.Join("", text))))[..8];
+ public static string Create(params string[] components) => Convert.ToHexString(SHA256.HashData(Encoding.UTF8.GetBytes(string.Join("", components))))[..8];
13
}
0 commit comments