Skip to content

Commit 16b7b1c

Browse files
committed
spacing
1 parent 90f8dbe commit 16b7b1c

File tree

1 file changed

+2
-2
lines changed
  • examples/hn.svelte.dev/src/routes/[list]

1 file changed

+2
-2
lines changed

examples/hn.svelte.dev/src/routes/[list]/rss.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @param {string} list
3-
* @param {Record<string,any>[]} items
3+
* @param {Record<string, any>[]} items
44
*/
55
const render = (list, items) => `<?xml version="1.0" encoding="UTF-8" ?>
66
<rss version="2.0">
@@ -34,7 +34,7 @@ const render = (list, items) => `<?xml version="1.0" encoding="UTF-8" ?>
3434
/**
3535
* @type {import('@sveltejs/kit').RequestHandler}
3636
*/
37-
export function get({params}) {
37+
export function get({ params }) {
3838
const list =
3939
params.list === 'top' ? 'news' : params.list === 'new' ? 'newest' : params.list;
4040

0 commit comments

Comments
 (0)