Skip to content

Commit

Permalink
refactor(core/webidl-contiguous): use var instead of let
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres authored and Marcos Cáceres committed Feb 20, 2017
1 parent cf11437 commit 1751c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/core/webidl-contiguous.js
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ define(
if (dfns.length === 0) {
const showWarnings = type && idlElem && idlElem.classList.contains("no-link-warnings") === false;
if (showWarnings) {
let msg = "No <dfn> for " + originalName + (originalParent ? " in " + originalParent : "") + ".";
var msg = "No <dfn> for " + originalName + (originalParent ? " in " + originalParent : "") + ".";
msg += " Please define it and link to spec that declares it. See https://github.com/w3c/respec/wiki/data--cite";
pubsubhub.pub("warn", msg);
}
Expand Down

0 comments on commit 1751c2f

Please sign in to comment.