瀏覽代碼

reference to github

Vladislav Folts 12 年之前
父節點
當前提交
df865193a6
共有 1 個文件被更改,包括 3 次插入2 次删除
  1. 3 2
      browser/oberonjs.html

+ 3 - 2
browser/oberonjs.html

@@ -26,7 +26,8 @@ END test.
 </p>
 <p id="runErrors" style="color:red"></p>
 <p id="runTime"></p>
-<a href="http://oberspace.dyndns.org">Home</a>
+<p><a href="http://oberspace.dyndns.org">Home</a></p>
+<p><a href="https://github.com/vladfolts/oberonjs">Development</a></p>
 
 <script>
 function require(){}
@@ -69,7 +70,7 @@ function run(){
 		errElement.textContent = errors;
 	}
 	var runTime = (new Date() - start) / 1000;
-	document.getElementById("runTime").textContent = "rune time (seconds): " + runTime;
+	document.getElementById("runTime").textContent = "run time (seconds): " + runTime;
 }
 </script>