From ebd4d3b56507d7cc6a041fb6439d2fb5311487d1 Mon Sep 17 00:00:00 2001 From: Stefan Karpinski Date: Thu, 13 Oct 2011 00:20:40 -0400 Subject: [PATCH] Rename: shown => show_to_string. --- j/show.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/j/show.j b/j/show.j index e7d0c2e8affc4..157d76521bb8d 100644 --- a/j/show.j +++ b/j/show.j @@ -1,7 +1,7 @@ # showing fundamental objects print(x) = show(x) -shown(x) = print_to_string(show, x) +show_to_string(x) = print_to_string(show, x) show(s::Symbol) = print(s) show(tn::TypeName) = show(tn.name)