aboutsummaryrefslogtreecommitdiff
path: root/blog
diff options
context:
space:
mode:
authorJaden Weiss <jadr2ddude@gmail.com>2019-06-30 21:55:38 -0400
committerChristine Dodrill <me@christine.website>2019-06-30 21:55:38 -0400
commit093d38ff92391edcb42072c8ef43a7453211de70 (patch)
treedbc3cd380dd1f5c60300223d518451fae6e4eea3 /blog
parent34df04aee537734105df4bbe945ef8965feb08d8 (diff)
downloadxesite-093d38ff92391edcb42072c8ef43a7453211de70.tar.xz
xesite-093d38ff92391edcb42072c8ef43a7453211de70.zip
fix grammar - "is ran" => "is run" (#61)
Diffstat (limited to 'blog')
-rw-r--r--blog/h-language-2019-06-30.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/blog/h-language-2019-06-30.markdown b/blog/h-language-2019-06-30.markdown
index 74b9d68..5968783 100644
--- a/blog/h-language-2019-06-30.markdown
+++ b/blog/h-language-2019-06-30.markdown
@@ -196,7 +196,7 @@ big of a program it can run. The playground server works like this:
- The user program is sent over HTTP with Content-Type [text/plain](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L402-L413)
- The program is [limited to 75 bytes on the server](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L44) (though this is [configurable](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L15) via flags or envvars)
- The program is [compiled](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L53)
-- The program is [ran](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L59)
+- The program is [run](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L59)
- The output is [returned via JSON](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L65-L72)
- This output is then put [into the playground page with JavaScript](https://github.com/Xe/x/blob/v1.1.7/cmd/h/http.go#L389-L394)