[Groonga-commit] groonga/express-kotoumi [master] Fix typo: expors => exports

Back to archive index

YUKI Hiroshi null+****@clear*****
Thu Feb 7 16:49:41 JST 2013


YUKI Hiroshi	2013-02-07 16:49:41 +0900 (Thu, 07 Feb 2013)

  New Revision: 0303f96acdabc866786a6261ef3bc307b250b16c
  https://github.com/groonga/express-kotoumi/commit/0303f96acdabc866786a6261ef3bc307b250b16c

  Log:
    Fix typo: expors => exports

  Modified files:
    lib/model.js

  Modified: lib/model.js (+6 -6)
===================================================================
--- lib/model.js    2013-02-07 16:32:25 +0900 (052309b)
+++ lib/model.js    2013-02-07 16:49:41 +0900 (d52b9f4)
@@ -25,7 +25,7 @@ function RequestResponse(options) {
   this._modelTypes.push(RequestResponse);
 }
 RequestResponse.prototype = new CommandModel();
-expors.RequestResponse = RequestResponse;
+exports.RequestResponse = RequestResponse;
 
 
 function PublishSubscribe(options) {
@@ -33,7 +33,7 @@ function PublishSubscribe(options) {
   this._modelTypes.push(PublishSubscribe);
 }
 PublishSubscribe.prototype = new CommandModel();
-expors.PublishSubscribe = PublishSubscribe;
+exports.PublishSubscribe = PublishSubscribe;
 
 
 
@@ -48,13 +48,13 @@ Object.defineProperty(REST.prototype, 'path', {
 Object.defineProperty(REST.prototype, 'method', {
   get: function() { return this._options.method || 'GET'; }
 });
-expors.REST = REST;
+exports.REST = REST;
 
 
 
 function SocketCommand() {
 }
-expors.SocketCommand = SocketCommand;
+exports.SocketCommand = SocketCommand;
 
 
 function SocketRequestResponse(options) {
@@ -63,7 +63,7 @@ function SocketRequestResponse(options) {
   this._modelTypes.push(SocketRequestResponse);
 }
 SocketRequestResponse.prototype = new RequestResponse();
-expors.SocketRequestResponse = SocketRequestResponse;
+exports.SocketRequestResponse = SocketRequestResponse;
 
 
 function SocketPublishSubscribe(options) {
@@ -72,4 +72,4 @@ function SocketPublishSubscribe(options) {
   this._modelTypes.push(SocketPublishSubscribe);
 }
 SocketPublishSubscribe.prototype = new PublishSubscribe();
-expors.SocketPublishSubscribe = SocketPublishSubscribe;
+exports.SocketPublishSubscribe = SocketPublishSubscribe;
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index