fix: Fix incorrect imports

This commit is contained in:
raon0211 2024-07-03 10:44:08 +09:00
parent ba1e976c5a
commit f7ec7cc6af
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { randomInt } from '../math';
import { randomInt } from '../math/randomInt.ts';
/**
* Returns a sample element array of a specified `size`.

View File

@ -1,4 +1,4 @@
import { mean } from './mean';
import { mean } from './mean.ts';
/**
* Calculates the average of an array of numbers when applying