Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

删除redis帮助文档中多余的字符 #2343

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sql/templates/sqlquery.html
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ <h4 class="modal-title text-danger">收藏语句</h4>
</div>

<div id="setHelp" class="alert alert-info" style="display: none">
` <i> 1、smembers key 列出集合key中的所有成员</i></br>
<i> 1、smembers key 列出集合key中的所有成员</i></br>
<i> 2、scard key 返回集合key中元素的个数</i></br>
<i> 3、sdiff key[key...] 获取集合的差集,若key为1个则返回集合的全部成员</i></br>
<i> 4、sunion key[key...] 返回集合的并集,不存在的key会被当做空集处理</i></br>
Expand Down Expand Up @@ -824,7 +824,7 @@ <h4 class="modal-title text-danger">收藏语句</h4>
if (xhr.status === 200) {
var blob = xhr.response;
var downloadLink = document.createElement('a');
downloadLink.href = window.URL.createObjectURL(blob);
downloadLink.href = window.URL.createObjectURL(blob);
downloadLink.click();
}
};
Expand Down
Loading