Skip to content

Commit ee2da6d

Browse files
committed
Fix typo in log message
1 parent 1cabe58 commit ee2da6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source-code/hydra/gen_rand.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def gen_rand(cfg):
1414
if cfg.n <= 0:
1515
LOG.error(f'negative number to generate {cfg.n}')
1616
return 1
17-
LOG.info(f'genrating {cfg.n} random numbers')
17+
LOG.info(f'generating {cfg.n} random numbers')
1818
LOG.info(f'using {cfg.distr.name} distribution')
1919
if cfg.distr.name == 'gauss':
2020
LOG.info(f'mu={cfg.distr.mu}, sigma={cfg.distr.sigma}')

0 commit comments

Comments
 (0)