Skip to content

Commit dc0d365

Browse files
author
Ary Borenszweig
committedMar 2, 2017
Add lang attribute for HTML tags in generated doc and static file handler. Fixes #4080
1 parent a2ffa05 commit dc0d365

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

Diff for: ‎src/compiler/crystal/tools/doc/html/main.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
55
<meta id="repository-name" content="<%= repository_name %>">

Diff for: ‎src/compiler/crystal/tools/doc/html/type.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8" />
55
<meta id="repository-name" content="<%= type.repository_name %>">

Diff for: ‎src/http/server/handlers/static_file_handler.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html>
2+
<html lang="en">
33
<head>
44
<title>Directory listing for <%= HTML.escape request_path %></title>
55
</head>

0 commit comments

Comments
 (0)
Please sign in to comment.