<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -12,4 +12,16 @@ Style guide for lawnelephant developers:
   (I know this hasn't been done universally in LeftParen, but we're
   trying to get there.)
 
+* Comment full-line comments like this:
+
+;; this is a full-line comment
+
+(with two semi-colons, indented as you would any other Scheme
+expression at that position.)
+
+If you add a comment to the end of a line, use one semi-colon, like this:
+
+(define (foo x)
+  (* x x) ; this is a neat line of code!
+
 </diff>
      <filename>docs/style-guide.txt</filename>
    </modified>
    <modified>
      <diff>@@ -32,8 +32,8 @@
        (li (a ((href &quot;http://github.com/vegashacker/lawnelephant/tree/master&quot;)) &quot;github&quot;))
        (li (a ((href &quot;http://blog.lawnelephant.com&quot;)) &quot;blog&quot;))
        (li (a ((href &quot;mailto:ask@lawnelephant.com&quot;)) &quot;ask@lawnelephant.com&quot;))
-       ;goog analytics really needs to be just before the closing body tag, but I don't know
-       ;how to put it there just yet
+       ;; XXX goog analytics really needs to be just before the closing body tag, but I
+       ;; don't know how to put it there just yet
       ,(raw-str goog-analytics)))
 
 (define (index-page-view sesh #:form-view (form-markup request-feature-form-view))
@@ -70,42 +70,40 @@
            (div ((id &quot;ft&quot;)) ,standard-footer)))))
 
 (define (feature-req-view sesh feat)
-  `(li 
-     (span ((class &quot;explanation&quot;))
-           ,(feature-request-expl feat))
+  `(li (span ((class &quot;explanation&quot;))
+             ,(feature-request-expl feat))
        (div ((class &quot;explanation-rest&quot;))
-           ,(web-link &quot;[link]&quot; (page-url feature-detail-page (rec-id feat)))
-           &quot; &quot;
-           ,(xexpr-if (can-vote-on? sesh feat)
-                      (** (web-link &quot;[vote up]&quot; (make-up-voter-url sesh feat))
-                          &quot; &quot;))
-           ,(format &quot;~A pts &quot; (vote-score feat))
-           ,(xexpr-if (in-admin-mode?)
-                      (delete-entry-view feat)))))
+            ,(web-link &quot;[link]&quot; (page-url feature-detail-page (rec-id feat)))
+            &quot; &quot;
+            ,(xexpr-if (can-vote-on? sesh feat)
+                       (** (web-link &quot;[vote up]&quot; (make-up-voter-url sesh feat))
+                           &quot; &quot;))
+            ,(format &quot;~A pts &quot; (vote-score feat))
+            ,(xexpr-if (in-admin-mode?)
+                       (delete-entry-view feat)))))
 
 (define-page (feature-feed-page req)
-             #:blank #t
-             (atom-feed feature-feed-page 
-                        #:feed-title &quot;features for lawnelephant&quot;
-                        #:feed-description &quot;all the features so far&quot;
-                        #:feed-updated/epoch-seconds (current-seconds)
-                        #:author-name &quot;the lawnelephant staff&quot;
-                        #:items 
-                        (map (lambda (fr) 
-                               (let ((explanation (rec-prop fr 'explanation)))
-                                 (atom-item 
-                                    #:title (string-ellide explanation 40)
-                                    #:url (string-append (setting *WEB_APP_URL*) &quot;feature/&quot; (rec-id fr))
-                                    #:updated-epoch-seconds (rec-prop fr 'created-at)
-                                    #:content explanation)))
-                               (get-feature-requests))))
+  #:blank #t
+  (atom-feed feature-feed-page 
+             #:feed-title &quot;features for lawnelephant&quot;
+             #:feed-description &quot;all the features so far&quot;
+             #:feed-updated/epoch-seconds (current-seconds)
+             #:author-name &quot;the lawnelephant staff&quot;
+             #:items 
+             (map (lambda (fr) 
+                    (let ((explanation (rec-prop fr 'explanation)))
+                      (atom-item 
+                       #:title (string-ellide explanation 40)
+                       #:url (string-append (setting *WEB_APP_URL*) &quot;feature/&quot; (rec-id fr))
+                       #:updated-epoch-seconds (rec-prop fr 'created-at)
+                       #:content explanation)))
+                  (get-feature-requests))))
 
 (define (delete-entry-view feat-req-rec)
   (** &quot; &quot;
       (web-link &quot;[delete]&quot; (body-as-url (req) (delete-rec! feat-req-rec) 
                                         (redirect-to (page-url index-page))))))
 
-
 (define (base-design #:title (title &quot;lawnelephant&quot;))
   (design
    #:atom-feed-page feature-feed-page
@@ -114,4 +112,3 @@
      &quot;/css/main.css&quot;)
    #:title title))
 
-</diff>
      <filename>view.ss</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>85df339a84bb204db91de3f9a9b43b9298e1c760</id>
    </parent>
  </parents>
  <author>
    <name>Rob Hunter</name>
    <email>rob.hunter@gmail.com</email>
  </author>
  <url>http://github.com/vegashacker/lawnelephant/commit/72f4ac4547e47fd7e54f99ce17b0ab67ad7d7d90</url>
  <id>72f4ac4547e47fd7e54f99ce17b0ab67ad7d7d90</id>
  <committed-date>2009-02-06T10:58:45-08:00</committed-date>
  <authored-date>2009-02-06T10:58:45-08:00</authored-date>
  <message>a formatting-only checkin</message>
  <tree>4d3bc853e06084badb75b80dccabb47d66c6eae8</tree>
  <committer>
    <name>Rob Hunter</name>
    <email>rob.hunter@gmail.com</email>
  </committer>
</commit>
