From b965c98ff1cf3038164c627d74df40f68bcc0a82 Mon Sep 17 00:00:00 2001
From: Brandon Aaron <brandon.aaron@gmail.com>
Date: Sat, 21 Jul 2007 01:53:38 +0000
Subject: [PATCH] missing semi-colon

---
 src/ajax/ajax.js |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js
index 7d83a0e..645caf7 100644
--- a/src/ajax/ajax.js
+++ b/src/ajax/ajax.js
@@ -77,7 +77,7 @@ jQuery.fn.extend({
 			complete: function(res, status){
 				// If successful, inject the HTML into all the matched elements
 				if ( status == "success" || !ifModified && status == "notmodified" )
-					self.html(res.responseText)
+					self.html(res.responseText);
 
 				self.each( callback, [res.responseText, status, res] );
 			}
-- 
1.7.10.4