Skip to content

Commit

Permalink
Fix typo: historgam -> histogram
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas committed Jul 25, 2023
1 parent daf17fc commit 84e5f93
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/graphForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const GraphForm: React.FC<GraphFormProps> = (
setMeanData2([]);
};

const SAMPLEDATAHISTORGAM = 1;
const SAMPLEDATAHISTOGRAM = 1;
const SAMPLEMEANLINE = 2;
const DISTRIBUTIONHISTOGRAM = 3;
const ESTIMATED_DISTRIBUTION = 4;
Expand Down Expand Up @@ -194,7 +194,7 @@ export const GraphForm: React.FC<GraphFormProps> = (
)}
</div>
<div className='row' id='capture'>
{graphTypes.includes(SAMPLEDATAHISTORGAM) && (
{graphTypes.includes(SAMPLEDATAHISTOGRAM) && (
<Histogram
color={'rgba(82, 208, 80, 1.0)'}
data1={data1}
Expand Down Expand Up @@ -357,4 +357,4 @@ export const GraphForm: React.FC<GraphFormProps> = (
</>

);
};
};

0 comments on commit 84e5f93

Please sign in to comment.