Skip to content

Commit 061354c

Browse files
authored
refactor: fix edquidistant typo (#1611)
1 parent acecaab commit 061354c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cli/common/options.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export interface CommonOptions {
1717
}
1818

1919
/**
20-
* This string contains a string representation of the loading time of this module.
20+
* This string contains a string representation of the time this module was loaded.
2121
*/
2222
const StartTimeString = date2string(new Date());
2323

@@ -35,7 +35,7 @@ export const benchmarkOptions: OptionDefinition[] = [
3535
{ name: 'max-file-slices', type: Number, description: 'If file has more than passed number of slices, the file is not processed', defaultValue: -1, typeLabel: '{underline number}' },
3636
{ name: 'threshold', alias: 't', type: Number, description: 'How many re-visits of the same node are ok?', defaultValue: undefined, typeLabel: '{underline number}' },
3737
{ name: 'per-file-time-limit', type: Number, description: 'Time limit in milliseconds to process single file (disabled by default)', defaultValue: undefined, typeLabel: '{underline number}' },
38-
{ name: 'sampling-strategy', type: String, description: 'Which strategy to use, when sampling is enabled', defaultValue: 'random', typeLabel: '{underline random/edquidistant}' },
38+
{ name: 'sampling-strategy', type: String, description: 'Which strategy to use, when sampling is enabled', defaultValue: 'random', typeLabel: '{underline random/equidistant}' },
3939
];
4040

4141
export const benchmarkHelperOptions: OptionDefinition[] = [
@@ -50,7 +50,7 @@ export const benchmarkHelperOptions: OptionDefinition[] = [
5050
{ name: 'enable-pointer-tracking', type: Boolean, description: 'Run dataflow analysis with pointer tracking', defaultValue: false },
5151
{ name: 'max-slices', type: Number, description: 'If file has more than passed number of slices, the file is not processed', defaultValue: -1, typeLabel: '{underline number}' },
5252
{ name: 'threshold', alias: 't', type: Number, description: 'How many re-visits of the same node are ok?', defaultValue: undefined, typeLabel: '{underline number}' },
53-
{ name: 'sampling-strategy', type: String, description: 'Which strategy to use, when sampling is enabled', defaultValue: 'random', typeLabel: '{underline random/edquidistant}' },
53+
{ name: 'sampling-strategy', type: String, description: 'Which strategy to use, when sampling is enabled', defaultValue: 'random', typeLabel: '{underline random/equidistant}' },
5454
];
5555

5656
export const exportQuadsOptions: OptionDefinition[] = [

0 commit comments

Comments
 (0)