From a2b8f2c2e8096cbe0b4db4f939e680acd2e0e1c6 Mon Sep 17 00:00:00 2001 From: nnaze Date: Fri, 23 May 2014 15:12:39 -0700 Subject: [PATCH] fix names per comments in 67866688 Update README. Change on 2014/05/23 by nnaze ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=67868950 --- README.md | 2 +- dispatcher_auto.js | 2 +- eventcontract_auto.js | 2 +- eventcontract_example.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 12dc6a7..a1fe3ec 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ java -jar compiler.jar \ --jsdir=./path/to/jsaction/**.js \ --output_wrapper="(function(){%output%})();" \ --only_closure_dependencies \ - --closure_entry_point=jsaction.DispatchAuto + --closure_entry_point=jsaction.dispatcherAuto # Usage diff --git a/dispatcher_auto.js b/dispatcher_auto.js index b05a82a..20aefea 100644 --- a/dispatcher_auto.js +++ b/dispatcher_auto.js @@ -3,7 +3,7 @@ * instance of jsaction.EventContract that it receives from the main HTML page. */ -goog.provide('jsaction.DispatcherAuto'); +goog.provide('jsaction.dispatcherAuto'); goog.require('jsaction.Dispatcher'); diff --git a/eventcontract_auto.js b/eventcontract_auto.js index d360fe0..52aae3a 100644 --- a/eventcontract_auto.js +++ b/eventcontract_auto.js @@ -7,7 +7,7 @@ * element must be present in the DOM for event binding to succeed. */ -goog.provide('jsaction.EventContractAuto'); +goog.provide('jsaction.eventContractAuto'); goog.require('jsaction.EventContract'); diff --git a/eventcontract_example.js b/eventcontract_example.js index 8afa1c1..74ebe27 100644 --- a/eventcontract_example.js +++ b/eventcontract_example.js @@ -13,7 +13,7 @@ * cooperate, and to check that the code jscompiles properly. */ -goog.provide('jsaction.EventContractExample'); +goog.provide('jsaction.eventContractExample'); goog.require('jsaction.EventContract');