Skip to content

Commit 2a7417d

Browse files
Hashen110dougwilson
authored andcommitted
examples: fixup html
closes #4866
1 parent 490f1a1 commit 2a7417d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/route-separation/views/users/edit.ejs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h1>Editing <%= user.name %></h1>
44

55
<div id="user">
6-
<form action="?_method=put", method="post">
6+
<form action="?_method=put" method="post">
77
<p>
88
Name:
99
<input type="text" value="<%= user.name %>" name="user[name]" />

examples/search/public/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width,initial-scale=1">
66
<title>Search example</title>
7-
<style type="text/css">
7+
<style>
88
body {
99
font: 14px "Helvetica Neue", Helvetica;
1010
padding: 50px;
@@ -15,7 +15,7 @@
1515
<h2>Search</h2>
1616
<p>Try searching for "ferret" or "cat".</p>
1717
<input type="search" name="search" value="" />
18-
<pre />
18+
<pre></pre>
1919
<script src="/client.js" charset="utf-8"></script>
2020
</body>
2121
</html>

0 commit comments

Comments
 (0)