From b2dc3a9199369af04cf3ee9db0d1ebb5576a594b Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Tue, 30 Apr 2013 13:38:02 -0400 Subject: Forum: Rename “asker” to “author” MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- forum/forum.ur | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'forum/forum.ur') diff --git a/forum/forum.ur b/forum/forum.ur index db33f8d..e8a4be5 100644 --- a/forum/forum.ur +++ b/forum/forum.ur @@ -21,7 +21,7 @@ functor Make(Template : sig end) = struct open Styles -open Asker +open Author style questionList style questionMetadata @@ -31,7 +31,7 @@ style questionEntryBody table question : { Id : int, Title : string, Body : string, - Asker : asker + Author : author } PRIMARY KEY Id sequence questionIdS @@ -44,7 +44,7 @@ fun prettyPrintQuestion row : xbody =
  • {[row.Question.Title]}

    {[row.Question.Body]} - Asked by {[row.Question.Asker]} + Asked by {[row.Question.Author]}
  • @@ -83,7 +83,7 @@ fun main () : transaction page =