Skip to content

Commit

Permalink
Merge pull request #139 from SaarthakMaini/fix-typo
Browse files Browse the repository at this point in the history
Fix Typo
  • Loading branch information
mikima authored Jul 6, 2023
2 parents 999bc74 + 7710d69 commit 808b6c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/circularDendrogram/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export function render(
// compute padding
const padding = (circumference - totalValue) / (hierarchy.leaves().length - 1)

// dictionary to choose algorythm according to options
// dictionary to choose algorithm according to options
const layouts = {
'Cluster Dendogram': d3.cluster(),
Tree: d3.tree(),
Expand Down
2 changes: 1 addition & 1 deletion src/circularDendrogram/visualOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const visualOptions = {

layout: {
type: 'text',
label: 'Layout algorythm',
label: 'Layout algorithm',
group: 'chart',
options: ['Cluster Dendogram', 'Tree'],
default: 'Tree',
Expand Down
2 changes: 1 addition & 1 deletion src/dendrogram/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function render(
// compute padding
const padding = (chartHeight - totalValue) / (hierarchy.leaves().length - 1)

// dictionary to choose algorythm according to options
// dictionary to choose algorithm according to options
const layouts = {
'Cluster Dendogram': d3.cluster(),
Tree: d3.tree(),
Expand Down
2 changes: 1 addition & 1 deletion src/dendrogram/visualOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const visualOptions = {

layout: {
type: 'text',
label: 'Layout algorythm',
label: 'Layout algorithm',
group: 'chart',
options: ['Cluster Dendogram', 'Tree'],
default: 'Tree',
Expand Down

0 comments on commit 808b6c6

Please sign in to comment.