You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2009/06/26 14:38:43 UTC

[Couchdb Wiki] Trivial Update of "Formatting with Show and List" by PerEjeklint

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Couchdb Wiki" for change notification.

The following page has been changed by PerEjeklint:
http://wiki.apache.org/couchdb/Formatting_with_Show_and_List

The comment on the change is:
Corrected a syntax error

------------------------------------------------------------------------------
  {{{
  function(head, row, req, row_info) {
    if (head) {
-     return "<p>head: "+JSON.stringify(head)+"</p><ul>"";
+     return "<p>head: "+JSON.stringify(head)+"</p><ul>";
    } else if (row) {
      return "<li>"+JSON.stringify(row)+"</li>";
    } else {