<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -8,8 +8,8 @@ function Man(options) {
     return luck;
   };
   this.render = function() {
-    return $('&lt;ul class=&quot;man&quot;&gt;')
-      .append('&lt;li class=&quot;hair&quot;&gt;')
+    return $('&lt;ul class=&quot;man&quot;&gt;&lt;/ul&gt;')
+      .append('&lt;li class=&quot;hair&quot;&gt;&lt;/li&gt;')
       .click(function() {
         $(this).children('.hair').remove();
       });</diff>
      <filename>example/models/man.js</filename>
    </modified>
    <modified>
      <diff>@@ -18,12 +18,12 @@ var Screw = (function($) {
       context: [],
 
       describe: function(name, fn) {
-        var describe = $('&lt;li class=&quot;describe&quot;&gt;')
-          .append($('&lt;h1&gt;').text(name))
-          .append('&lt;ol class=&quot;befores&quot;&gt;')
-          .append('&lt;ul class=&quot;its&quot;&gt;')
-          .append('&lt;ul class=&quot;describes&quot;&gt;')
-          .append('&lt;ol class=&quot;afters&quot;&gt;');
+        var describe = $('&lt;li class=&quot;describe&quot;&gt;&lt;/li&gt;')
+          .append($('&lt;h1&gt;&lt;/h1&gt;').text(name))
+          .append('&lt;ol class=&quot;befores&quot;&gt;&lt;/ol&gt;')
+          .append('&lt;ul class=&quot;its&quot;&gt;&lt;/ul&gt;')
+          .append('&lt;ul class=&quot;describes&quot;&gt;&lt;/ul&gt;')
+          .append('&lt;ol class=&quot;afters&quot;&gt;&lt;/ol&gt;');
 
         this.context.push(describe);
         fn.call();
@@ -35,8 +35,8 @@ var Screw = (function($) {
       },
 
       it: function(name, fn) {
-        var it = $('&lt;li class=&quot;it&quot;&gt;')
-          .append($('&lt;h2&gt;').text(name))
+        var it = $('&lt;li class=&quot;it&quot;&gt;&lt;/li&gt;')
+          .append($('&lt;h2&gt;&lt;/h2&gt;').text(name))
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -45,7 +45,7 @@ var Screw = (function($) {
       },
 
       before: function(fn) {
-        var before = $('&lt;li class=&quot;before&quot;&gt;')
+        var before = $('&lt;li class=&quot;before&quot;&gt;&lt;/li&gt;')
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -54,7 +54,7 @@ var Screw = (function($) {
       },
 
       after: function(fn) {
-        var after = $('&lt;li class=&quot;after&quot;&gt;')
+        var after = $('&lt;li class=&quot;after&quot;&gt;&lt;/li&gt;')
           .data('screwunit.run', fn);
 
         this.context[this.context.length-1]
@@ -66,11 +66,11 @@ var Screw = (function($) {
 
   $(screw).queue(function() { $(screw).trigger('loading') });
   $(function() {
-    $('&lt;div class=&quot;describe&quot;&gt;')
-      .append('&lt;h3 class=&quot;status&quot;&gt;')
-      .append('&lt;ol class=&quot;befores&quot;&gt;')
-      .append('&lt;ul class=&quot;describes&quot;&gt;')
-      .append('&lt;ol class=&quot;afters&quot;&gt;')
+    $('&lt;div class=&quot;describe&quot;&gt;&lt;/div&gt;')
+      .append('&lt;h3 class=&quot;status&quot;&gt;&lt;/h3&gt;')
+      .append('&lt;ol class=&quot;befores&quot;&gt;&lt;/ol&gt;')
+      .append('&lt;ul class=&quot;describes&quot;&gt;&lt;/ul&gt;')
+      .append('&lt;ol class=&quot;afters&quot;&gt;&lt;/ol&gt;')
       .appendTo('body');
 
     $(screw).dequeue();</diff>
      <filename>lib/screw.builder.js</filename>
    </modified>
    <modified>
      <diff>@@ -26,10 +26,10 @@
         .bind('failed', function(e, reason) {
           $(this)
             .addClass('failed')
-            .append($('&lt;p class=&quot;error&quot;&gt;').text(reason.toString()));
+            .append($('&lt;p class=&quot;error&quot;&gt;&lt;/p&gt;').text(reason.toString()));
           if (reason.fileName || reason.lineNumber) {
             $(this)
-              .append($('&lt;p class=&quot;error&quot;&gt;').text(reason.fileName + &quot; : &quot; + reason.lineNumber));
+              .append($('&lt;p class=&quot;error&quot;&gt;&lt;/p&gt;').text(reason.fileName + &quot; : &quot; + reason.lineNumber));
           }
         })
     })</diff>
      <filename>lib/screw.events.js</filename>
    </modified>
    <modified>
      <diff>@@ -48,16 +48,16 @@ Screw.Unit(function() {
     
     describe('when given a function', function() {
       it(&quot;returns the function's signature&quot;, function() {
-        expect($.print(function() {})).to(equal, 'function ()');
-        expect($.print(function foo() {})).to(equal, 'function foo()');
-        expect($.print(function foo(bar) {})).to(equal, 'function foo(bar)');
+        expect($.print(function() {})).to(match, /function\s*\(\)/);
+        expect($.print(function foo() {})).to(match, /function\s*foo\(\)/);
+        expect($.print(function foo(bar) {})).to(match, /function\s*foo\(bar\)/);
       });        
     });
 
     describe('when given an element', function() {
       it(&quot;returns the string representation of the element&quot;, function() {
-        expect($.print($('&lt;div&gt;').get(0))).to(equal, '&lt;div&gt;');
-        expect($.print($('&lt;div foo=&quot;bar&quot;&gt;').get(0))).to(equal, '&lt;div&gt;');
+        expect($.print($('&lt;div&gt;&lt;/div&gt;').get(0))).to(equal, '&lt;div&gt;');
+        expect($.print($('&lt;div foo=&quot;bar&quot;&gt;&lt;/div&gt;').get(0))).to(equal, '&lt;div&gt;');
       });
     });
 
@@ -91,7 +91,7 @@ Screw.Unit(function() {
 
     describe('when given a jQuery', function() {
       it(&quot;returns the printed array of elements engirthed in '$()' &quot;, function() {
-        expect($.print($('&lt;div&gt;'))).to(equal, '$([ &lt;div&gt; ])');
+        expect($.print($('&lt;div&gt;&lt;/div&gt;'))).to(equal, '$([ &lt;div&gt; ])');
       });
     });
     </diff>
      <filename>spec/print_spec.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7b0cd17924ab819e4d39249eab7831aa8a0f2f88</id>
    </parent>
  </parents>
  <author>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </author>
  <url>http://github.com/trotter/screw-unit/commit/890acf72d658ddca2d9221b9987c49dbd34cd3e2</url>
  <id>890acf72d658ddca2d9221b9987c49dbd34cd3e2</id>
  <committed-date>2008-07-31T11:06:53-07:00</committed-date>
  <authored-date>2008-07-31T11:06:53-07:00</authored-date>
  <message>support IE by fixing jQuery typos</message>
  <tree>adcd3ede86326a29192c7deb67ce3029b73b764b</tree>
  <committer>
    <name>topper</name>
    <email>topper@toppingdesign.com</email>
  </committer>
</commit>
