Skip to content

Commit

Permalink
fix naming in git
Browse files Browse the repository at this point in the history
  • Loading branch information
youngbryanyu committed Jan 16, 2024
1 parent 7051df1 commit f767cbb
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/errors/typeConversionError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SimpleAppConfigError } from './SimpleAppConfigError';
import { SimpleAppConfigError } from './simpleAppConfigError';

/**
* An error extending {@link SimpleAppConfigError} that should be thrown when type conversion failed.
Expand Down
2 changes: 1 addition & 1 deletion src/errors/undefinedConfigValueError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SimpleAppConfigError } from './SimpleAppConfigError';
import { SimpleAppConfigError } from './simpleAppConfigError';

/**
* An error extending {@link SimpleAppConfigError} that should be thrown when attempting to access a value from a configuration
Expand Down
2 changes: 1 addition & 1 deletion src/errors/undefinedEnvVarError.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SimpleAppConfigError } from './SimpleAppConfigError';
import { SimpleAppConfigError } from './simpleAppConfigError';

/**
* An error extending {@link SimpleAppConfigError} that should be thrown when accessing an environment variable that is undefined.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SimpleAppConfigError } from './SimpleAppConfigError';
import { SimpleAppConfigError } from './simpleAppConfigError';

/**
* An error extending {@link SimpleAppConfigError} that should be thrown when a string is being converted to a nonexistent type.
Expand Down

0 comments on commit f767cbb

Please sign in to comment.