From 762107fdc23e7739e9db6843173506c4d00cae0e Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 30 Dec 2020 09:37:50 -0800 Subject: 7476 --- html/apps/tile/box.mu.html | 2 +- html/apps/tile/data.mu.html | 2 +- html/apps/tile/environment.mu.html | 2 +- html/apps/tile/float-stack.mu.html | 2 +- html/apps/tile/gap-buffer.mu.html | 2 +- html/apps/tile/grapheme-stack.mu.html | 2 +- html/apps/tile/int-stack.mu.html | 2 +- html/apps/tile/main.mu.html | 2 +- html/apps/tile/rpn.mu.html | 2 +- html/apps/tile/surface.mu.html | 2 +- html/apps/tile/table.mu.html | 2 +- html/apps/tile/value-stack.mu.html | 2 +- html/apps/tile/value.mu.html | 2 +- html/apps/tile/word.mu.html | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) (limited to 'html/apps/tile') diff --git a/html/apps/tile/box.mu.html b/html/apps/tile/box.mu.html index 88d29001..bed85d6f 100644 --- a/html/apps/tile/box.mu.html +++ b/html/apps/tile/box.mu.html @@ -54,7 +54,7 @@ if ('onhashchange' in window) { -https://github.com/akkartik/mu/blob/master/apps/tile/box.mu +https://github.com/akkartik/mu/blob/main/apps/tile/box.mu
   1 fn draw-box screen: (addr screen), row1: int, col1: int, row2: int, col2: int {
   2   draw-horizontal-line screen, row1, col1, col2
diff --git a/html/apps/tile/data.mu.html b/html/apps/tile/data.mu.html
index 0907d96e..46940746 100644
--- a/html/apps/tile/data.mu.html
+++ b/html/apps/tile/data.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/data.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/data.mu
 
   1 type sandbox {
   2   setup: (handle line)
diff --git a/html/apps/tile/environment.mu.html b/html/apps/tile/environment.mu.html
index bb4cec67..744501c3 100644
--- a/html/apps/tile/environment.mu.html
+++ b/html/apps/tile/environment.mu.html
@@ -56,7 +56,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/environment.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/environment.mu
 
    1 type environment {
    2   screen: (handle screen)
diff --git a/html/apps/tile/float-stack.mu.html b/html/apps/tile/float-stack.mu.html
index 071b189c..d6d100b7 100644
--- a/html/apps/tile/float-stack.mu.html
+++ b/html/apps/tile/float-stack.mu.html
@@ -54,7 +54,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/float-stack.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/float-stack.mu
 
  1 type float-stack {
  2   data: (handle array float)
diff --git a/html/apps/tile/gap-buffer.mu.html b/html/apps/tile/gap-buffer.mu.html
index 29cdc22f..c7c9b7ce 100644
--- a/html/apps/tile/gap-buffer.mu.html
+++ b/html/apps/tile/gap-buffer.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/gap-buffer.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/gap-buffer.mu
 
   1 type gap-buffer {
   2   left: grapheme-stack
diff --git a/html/apps/tile/grapheme-stack.mu.html b/html/apps/tile/grapheme-stack.mu.html
index fea2d996..0d08d5a0 100644
--- a/html/apps/tile/grapheme-stack.mu.html
+++ b/html/apps/tile/grapheme-stack.mu.html
@@ -54,7 +54,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/grapheme-stack.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/grapheme-stack.mu
 
   1 type grapheme-stack {
   2   data: (handle array grapheme)
diff --git a/html/apps/tile/int-stack.mu.html b/html/apps/tile/int-stack.mu.html
index d1210ea1..d006df2b 100644
--- a/html/apps/tile/int-stack.mu.html
+++ b/html/apps/tile/int-stack.mu.html
@@ -54,7 +54,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/int-stack.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/int-stack.mu
 
  1 type int-stack {
  2   data: (handle array int)
diff --git a/html/apps/tile/main.mu.html b/html/apps/tile/main.mu.html
index e1a6f9a9..a0552b51 100644
--- a/html/apps/tile/main.mu.html
+++ b/html/apps/tile/main.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/main.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/main.mu
 
   1 fn main args-on-stack: (addr array addr array byte) -> _/ebx: int {
   2   var args/eax: (addr array addr array byte) <- copy args-on-stack
diff --git a/html/apps/tile/rpn.mu.html b/html/apps/tile/rpn.mu.html
index 60f7625e..55564796 100644
--- a/html/apps/tile/rpn.mu.html
+++ b/html/apps/tile/rpn.mu.html
@@ -56,7 +56,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/rpn.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/rpn.mu
 
   1 fn evaluate functions: (addr handle function), bindings: (addr table), scratch: (addr line), end: (addr word), out: (addr value-stack) {
   2   var line/eax: (addr line) <- copy scratch
diff --git a/html/apps/tile/surface.mu.html b/html/apps/tile/surface.mu.html
index 33ab2637..12f7127f 100644
--- a/html/apps/tile/surface.mu.html
+++ b/html/apps/tile/surface.mu.html
@@ -56,7 +56,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/surface.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/surface.mu
 
   1 # A surface is a large 2-D grid that you can only see a subset of through the
   2 # screen.
diff --git a/html/apps/tile/table.mu.html b/html/apps/tile/table.mu.html
index 1f07d3b2..672fdd81 100644
--- a/html/apps/tile/table.mu.html
+++ b/html/apps/tile/table.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/table.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/table.mu
 
   1 fn initialize-table _self: (addr table), n: int {
   2   var self/esi: (addr table) <- copy _self
diff --git a/html/apps/tile/value-stack.mu.html b/html/apps/tile/value-stack.mu.html
index dc118e7e..b1aeaed9 100644
--- a/html/apps/tile/value-stack.mu.html
+++ b/html/apps/tile/value-stack.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/value-stack.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/value-stack.mu
 
   1 # support for non-int values is untested
   2 
diff --git a/html/apps/tile/value.mu.html b/html/apps/tile/value.mu.html
index 0606c756..51887537 100644
--- a/html/apps/tile/value.mu.html
+++ b/html/apps/tile/value.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/value.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/value.mu
 
   1 fn render-value-at screen: (addr screen), row: int, col: int, _val: (addr value), max-width: int {
   2   move-cursor screen, row, col
diff --git a/html/apps/tile/word.mu.html b/html/apps/tile/word.mu.html
index ff4d9215..681865c4 100644
--- a/html/apps/tile/word.mu.html
+++ b/html/apps/tile/word.mu.html
@@ -55,7 +55,7 @@ if ('onhashchange' in window) {
 
 
 
-https://github.com/akkartik/mu/blob/master/apps/tile/word.mu
+https://github.com/akkartik/mu/blob/main/apps/tile/word.mu
 
   1 fn initialize-word _self: (addr word) {
   2   var self/esi: (addr word) <- copy _self
-- 
cgit 1.4.1-2-gfad0