aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts
index f35363a..fa3b75f 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,6 +1,6 @@
import { fetchMemberProfile, fetchUser } from './hypixel'
import express from 'express'
-import { fetchAllLeaderboardsCategoriezed, fetchMemberLeaderboard } from './database'
+import { fetchAllLeaderboardsCategorized, fetchMemberLeaderboard } from './database'
const app = express()
@@ -42,7 +42,7 @@ app.get('/leaderboard/:name', async(req, res) => {
app.get('/leaderboards', async(req, res) => {
res.json(
- await fetchAllLeaderboardsCategoriezed()
+ await fetchAllLeaderboardsCategorized()
)
})