Skip to content

Commit c4b10a4

Browse files
committed
.
1 parent 880d971 commit c4b10a4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

_bibliography/papers.bib

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,7 @@ @inproceedings{yi2022empirical
356356
abbr={FSE},
357357
selected={true},
358358
bibtex_show={true},
359+
top_se_conf={true},
359360
title={An Empirical Study of Blockchain System Vulnerabilities: Modules, Types, and Patterns},
360361
author={Yi, Xiao and Wu, Daoyuan and Jiang, Lingxiao and Fang, Yuzhou and Zhang, Kehuan and Zhang, Wei},
361362
booktitle={Proc. ACM Symposium on the Foundations of Software Engineering (FSE)},

_includes/pubstats.liquid

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ document.addEventListener("DOMContentLoaded", function() {
4848
4949
var detailStr = [];
5050
for (var key in bigFourCounts) {
51-
if (bigFourCounts[key] > 0) detailStr.push(key + "*" + bigFourCounts[key]);
51+
if (bigFourCounts[key] > 0) detailStr.push(key + "×" + bigFourCounts[key]);
5252
}
5353
if(detailStr.length > 0)
5454
document.getElementById("big-four-detail").textContent = " (" + detailStr.join(", ") + ")";
@@ -70,7 +70,7 @@ document.addEventListener("DOMContentLoaded", function() {
7070
7171
var seDetailStr = [];
7272
for (var key in topSeConfCounts) {
73-
if (topSeConfCounts[key] > 0) seDetailStr.push(key + "*" + topSeConfCounts[key]);
73+
if (topSeConfCounts[key] > 0) seDetailStr.push(key + "×" + topSeConfCounts[key]);
7474
}
7575
if(seDetailStr.length > 0)
7676
document.getElementById("top-se-conf-detail").textContent = " (" + seDetailStr.join(", ") + ")";

0 commit comments

Comments
 (0)