-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
efefeae
commit d22265e
Showing
2 changed files
with
83 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
+++ | ||
title = 'Corrections' | ||
date = 2024-03-26T20:17:59-04:00 | ||
draft = false | ||
type = "page" | ||
layout = "single_no_toc" | ||
+++ | ||
|
||
I have a tendency to make a lot of typos. My brain reads what I meant, not what I typed. On an occasion, I may also make an error (:gasp:) or state something too imprecisely. | ||
|
||
I don't have collaborators for this site to check for any kind of errors. Therefore, if you spot an error of any sort, please let me know by reporting it on my [Github issues page](https://github.com/jmacglashan/decisions_and_dragons/issues). | ||
|
||
Below I will list corrections others have pointed out. As of now, there are no user-submitted corrections because the site is too new, too unpopular, or because I've been uncharacteristically error-free. Feel free to remedy that! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
<!doctype html> | ||
<html | ||
lang="en-us" | ||
dir="ltr" | ||
> | ||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width" /> | ||
<title> | ||
Corrections | Decisions & Dragons | ||
</title> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" | ||
rel="stylesheet" | ||
/> | ||
|
||
<link rel="stylesheet" href="/css/main.css" /> | ||
<link rel="stylesheet" href="/css/fonts.css" /> | ||
<link rel="stylesheet" href="/css/mdx.css" /> | ||
|
||
<script src="/js/main.js"></script> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<script id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js"></script> | ||
<script> | ||
MathJax = { | ||
tex: { | ||
displayMath: [['\\[', '\\]'], ['$$', '$$']], | ||
inlineMath: [['\\(', '\\)'], ['$', '$']] , | ||
tags: 'ams' | ||
} | ||
}; | ||
</script> <script> | ||
window.addEventListener("hashchange", function () { | ||
window.scrollTo(window.scrollX, window.scrollY - 70); | ||
}); | ||
</script> | ||
</head> | ||
<body> | ||
|
||
<div class="centered-container"> | ||
<div class="small_header"> | ||
<span | ||
><a class="logo_link" href="http://localhost:1313/" | ||
>Decisions & Dragons</a | ||
></span | ||
> | ||
<span class="nav"> | ||
|
||
<a href=" /about/">About</a> | ||
|
||
<a href=" /notation/">Notation</a> | ||
|
||
<a href=" /posts/">Posts</a> | ||
|
||
<a href=" /corrections/">Corrections</a> | ||
|
||
</span> | ||
</div> | ||
<div class="main-content"> | ||
<h1>Corrections</h1> | ||
<p>I have a tendency to make a lot of typos. My brain reads what I meant, not what I typed. On an occasion, I may also make an error (:gasp:) or state something too imprecisely.</p> | ||
<p>I don’t have collaborators for this site to check for any kind of errors. Therefore, if you spot an error of any sort, please let me know by reporting it on my <a href="https://github.com/jmacglashan/decisions_and_dragons/issues">Github issues page</a>.</p> | ||
<p>Below I will list corrections others have pointed out. As of now, there are no user-submitted corrections because the site is too new, too unpopular, or because I’ve been uncharacteristically error-free. Feel free to remedy that!</p> | ||
|
||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |