Skip to content

Commit

Permalink
fix: typo in default index view (#132)
Browse files Browse the repository at this point in the history
Fixes a typo in the default index HTML and removes comment that is no longer valid.
  • Loading branch information
lukechu10 committed Apr 12, 2022
1 parent 617ec9a commit 1f1522a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/perseus/src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ use sycamore::{
};

/// 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.
/// Note that this doesn't declare a character set or anything else (for maximal cross-language compatibility)
static DFLT_INDEX_VIEW: &str = r#"<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
Expand Down

0 comments on commit 1f1522a

Please sign in to comment.