about summary refs log tree commit diff stats
path: root/nqueens.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-21 17:44:53 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-21 17:44:53 -0700
commit2f02189ddcdeb7d25b0ca9bd5b955b764d41a1a7 (patch)
tree7c2e8b6e37ae3201dc01e90bcb390ee60b7f4a77 /nqueens.mu
parent61c025b11ed4ddd002f09f061fd77c75d8b6d0ba (diff)
downloadmu-2f02189ddcdeb7d25b0ca9bd5b955b764d41a1a7.tar.gz
2996
Diffstat (limited to 'nqueens.mu')
-rw-r--r--nqueens.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/nqueens.mu b/nqueens.mu
index 423bfa8f..7d961027 100644
--- a/nqueens.mu
+++ b/nqueens.mu
@@ -9,7 +9,7 @@ container square [
 def nqueens n:number, queens:address:list:square -> result:number [
   local-scope
   load-ingredients
-  # if queens is already long enough, print it and return
+  # if 'queens' is already long enough, print it and return
   added-so-far:number <- length queens
   {
     done?:boolean <- greater-or-equal added-so-far, n