Skip to content

Commit 1f1522a

Browse files
authored
fix: typo in default index view (#132)
Fixes a typo in the default index HTML and removes comment that is no longer valid.
1 parent 617ec9a commit 1f1522a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/perseus/src/init.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@ use sycamore::{
1818
};
1919

2020
/// The default index view, because some simple apps won't need anything fancy here. The user should be able to provide the smallest possible amount of information for their app to work.
21-
/// Note that this doesn't declare a character set or anything else (for maximal cross-language compatibility)
2221
static DFLT_INDEX_VIEW: &str = r#"<!DOCTYPE html>
2322
<html>
2423
<head>
25-
<meta charset=UTF-8" />
24+
<meta charset="UTF-8" />
2625
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2726
</head>
2827
<body>

0 commit comments

Comments
 (0)