Merge pull request #3176 from yutotnh/fix-typo

Fix typo
This commit is contained in:
Ashish Jain
2022-06-28 19:01:35 +02:00
committed by GitHub
68 changed files with 124 additions and 141 deletions

View File

@@ -945,7 +945,7 @@ export const setupGraphViewbox = function (graph, svgElem, padding, useMaxWidth)
// Ensure the viewBox includes the whole svgBounds area with extra space for padding
const vBox = `0 0 ${width} ${height}`;
log.debug(
'Grpah.label',
'Graph.label',
graph._label,
'swidth',
sWidth,
@@ -966,7 +966,7 @@ export const setupGraphViewbox = function (graph, svgElem, padding, useMaxWidth)
svgElem.select('g').attr('transform', `translate(${tx}, ${ty})`);
};
export const initIdGeneratior = class iterator {
export const initIdGenerator = class iterator {
constructor(deterministic, seed) {
this.deterministic = deterministic;
this.seed = seed;
@@ -1109,7 +1109,7 @@ export default {
memoize,
runFunc,
entityDecode,
initIdGeneratior,
initIdGenerator: initIdGenerator,
directiveSanitizer,
sanitizeCss,
};