about summary refs log tree commit diff stats
path: root/js/bird-words/browser-beak.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/bird-words/browser-beak.js')
-rw-r--r--js/bird-words/browser-beak.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bird-words/browser-beak.js b/js/bird-words/browser-beak.js
index de55bde..c76f7f6 100644
--- a/js/bird-words/browser-beak.js
+++ b/js/bird-words/browser-beak.js
@@ -15,7 +15,7 @@ function prettyItUp(string) {
     return string.charAt(0).toUpperCase() + string.slice(1) + "!";
 }
 
-fetch('input.txt')
+fetch('corpus.txt')
     .then(response => response.text())
     .then(data => {
         let corpus = data;