Skip to content

Commit

Permalink
Merge pull request #35 from victor-homyakov/fix-typo
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreardon authored May 5, 2020
2 parents e40d35f + 47814cb commit 689682e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/decorator/decorator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default makeDecorator({
name: constants.decoratorKey,
parameterName: constants.paramKey,
// We are enabling the addon for all stories
// 'Interactions' need to be prvoided by consumers
// 'Interactions' need to be provided by consumers
skipIfNoParametersOrOptions: false,
wrapper: (getStory, context, { parameters }) => {
const interactions: PublicInteractionTask[] | undefined = parameters && parameters.interactions;
Expand Down
2 changes: 1 addition & 1 deletion src/panel/task-result/timed-result.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function Variance({ result }: { result: TimedResult }) {
<>
<Parts.Heading>Variance</Parts.Heading>
<Parts.Note>
When doing multiple runs the can be differences between the runs. The lower the variance,
When doing multiple runs there can be differences between the runs. The lower the variance,
the higher confidence you can have
</Parts.Note>
<Parts.Table>
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/preset/client.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const domElementCountWithoutSvg: StaticTask = staticTask({
return true;
}

// we can exclude thie one
// we can exclude this one
return false;
});

Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type Nullable<T> = T | null;
// Similiar to {...A, ...B}
// Similar to {...A, ...B}
// 1. Remove all overlapping types from First
// 2. Add properties from Second
export type Combine<First, Second> = Omit<First, keyof Second> & Second;
Expand Down

0 comments on commit 689682e

Please sign in to comment.