Skip to content

Commit 76f2b86

Browse files
committed
doc: 更新文档
1 parent bb6a651 commit 76f2b86

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/extensions/BootstrapBlazor.Socket/DataConverter/BinConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
1+
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33
// Website: https://www.blazor.zone or https://argozhang.github.io/
44

@@ -37,7 +37,7 @@ public static string ToString(byte[]? bytes, string? separator = "-")
3737
/// <returns></returns>
3838
public static byte[] ToBytes(string str, string? separator = null, StringSplitOptions options = StringSplitOptions.None)
3939
{
40-
// 把 str 内的 delimiter 符号替换掉
40+
// 把 str 内的 separator 符号替换掉
4141
if (!string.IsNullOrEmpty(separator))
4242
{
4343
str = string.Join("", str.Split(separator, options).Select(i => i.PadLeft(8, '0')));

0 commit comments

Comments
 (0)