Skip to content

Commit

Permalink
fixing lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
lmccart committed Jul 22, 2020
1 parent 59e8312 commit 2f1e4e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,8 @@ module.exports = function(grunt) {
'!<%= config.dist %>/**/README.html',
'!<%= config.dist %>/**/p5_featured/**/*.html',
'!<%= config.dist %>/**/learn/*.html',
'!<%= config.dist %>/**/examples/*.html'
'!<%= config.dist %>/**/examples/*.html',
'!<%= config.dist %>/**/reference/assets/index.html'
],
options: {
ignore: [
Expand Down
2 changes: 1 addition & 1 deletion src/templates/pages/reference/assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Redirector</title>
<meta http-equiv="refresh" content="0; url=../">
<meta http-equiv="refresh" content="0;url=../">
</head>
<body>
<a href="../">Click here to redirect</a>
Expand Down

0 comments on commit 2f1e4e9

Please sign in to comment.