From 1d7f82b1b184e7c81c205a9621621e1236963a94 Mon Sep 17 00:00:00 2001 From: Iltimas Doha Date: Wed, 4 Jan 2023 15:34:31 -0500 Subject: [PATCH] Remove typo The $ prefix is reserved, and cannot be used for variable and import names. The actual exported name is url without $ --- src/routes/docs/2.api/helpers/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/docs/2.api/helpers/index.md b/src/routes/docs/2.api/helpers/index.md index c16aff2..6923577 100644 --- a/src/routes/docs/2.api/helpers/index.md +++ b/src/routes/docs/2.api/helpers/index.md @@ -2,5 +2,5 @@ Helpers can be imported from `@roxi/routify`: ```javascript // example -import { $url } from '@roxi/routify' -``` \ No newline at end of file +import { url } from '@roxi/routify' +```