about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-11 09:10:57 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-11 09:10:57 -0700
commit7b5ad6028ce8a3f3aa8184c5c3e6860008596dff (patch)
tree100fb8d0cd4ad23127bd8716bbe14974c76fac84
parentefe641a030215d6d3795d5ef0c6fd304402da10b (diff)
downloadmu-7b5ad6028ce8a3f3aa8184c5c3e6860008596dff.tar.gz
6633
-rw-r--r--README.md4
-rw-r--r--subx_debugging.md (renamed from debugging.md)2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index c0740f89..38664ba1 100644
--- a/README.md
+++ b/README.md
@@ -74,7 +74,7 @@ To translate Mu programs through these layers into tiny zero-dependency ELF
 binaries for Linux, use `translate_mu`.
 
 Mu programs can be run in emulated mode to emit traces, which permit time-travel
-debugging. ([More details.](debugging.md))
+debugging. ([More details.](subx_debugging.md))
 
 ### incomplete tools
 
@@ -154,7 +154,7 @@ If you're still reading, here are some more things to check out:
 
 - [How to get your text editor set up for Mu and SubX programs.](editor.md)
 
-- [Some tips for debugging Mu and SubX programs.](debugging.md)
+- [Some tips for debugging SubX programs.](subx_debugging.md)
 
 - [Shared vocabulary of data types and functions shared by Mu programs.](vocabulary.md)
   Mu programs can transparently call low-level functions written in SubX.
diff --git a/debugging.md b/subx_debugging.md
index ef4cf474..d7c0c294 100644
--- a/debugging.md
+++ b/subx_debugging.md
@@ -1,4 +1,4 @@
-## A few hints for debugging
+## A few hints for debugging SubX programs
 
 Writing programs in SubX is surprisingly pleasant and addictive. Reading
 programs is a work in progress, and hopefully the extensive unit tests help.