Skip to content

Commit

Permalink
fix: grammar and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
asartalo committed Sep 9, 2024
1 parent 8cb76ff commit a1108d4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ interface PreviewVerticalSubtractionProps {

function PreviewVerticalSubtraction({ data }: PreviewVerticalSubtractionProps): JSX.Element {
const problems = generateSubtractionProblems(data);
const instructions = 'Solve the following subtraction problems';
const instructions = 'Solve the following subtraction problems.';

return (
<>
Expand Down
7 changes: 4 additions & 3 deletions src/pages/verticalSubtraction/VerticalSubtractionPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ import VerticalSubtractionData from './VerticalSubtractionData';
import PreviewVerticalSubtraction from './PreviewVerticalSubtraction';

const defaultData: VerticalSubtractionData = {
problemGeneration: 'subtrahend and difference',
count: 10,
minuend: { 'from':0, 'to':9 },
subtrahend: { 'from':0, 'to':9 },
difference: { 'from':0, 'to':9 },
minuend: { 'from': 0, 'to': 9 },
subtrahend: { 'from': 0, 'to': 9 },
difference: { 'from': 0, 'to': 9 },
columns: 1,
};
const key = 'verticalSubtraction';
Expand Down

0 comments on commit a1108d4

Please sign in to comment.