Skip to content

Commit

Permalink
Typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ekarademir committed Oct 13, 2023
1 parent 6cb8697 commit 5ab5d29
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/concerto-analysis/src/compare-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ const EmptyConfig: CompareConfig = {

export class CompareConfigBuilder {
/**
* A utility to build CompareConfig to be used in Compare class.
* A utility to build {@link CompareConfig} to be used in {@link Compare} class.
* A new compare config can be edited with provided functions and finally
* resulting config can be used by calling `build`.
*
* By default, it starts with an emoty configuration.
* By default, it starts with an empty configuration.
*/

private _config: CompareConfig = EmptyConfig;
Expand All @@ -98,9 +98,9 @@ export class CompareConfigBuilder {
}

/**
* Adds default comparer configuration onto the configuration
* baing built.
*/
* Adds default comparer configuration onto the configuration
* being built.
*/
public default() {
this._config = {
comparerFactories: [...this._config.comparerFactories, ...defaultCompareConfig.comparerFactories],
Expand All @@ -109,7 +109,7 @@ export class CompareConfigBuilder {
}

/**
* Extends existing configuration tha't built up to this point
* Extends existing configuration that's built upto this point
* with the provided config.
*
* @param {CompareConfig} config - The configuration to extend with
Expand Down

0 comments on commit 5ab5d29

Please sign in to comment.