Skip to content
This repository has been archived by the owner on Jan 4, 2023. It is now read-only.

Commit

Permalink
fix names per comments in 67866688
Browse files Browse the repository at this point in the history
Update README.

	Change on 2014/05/23 by nnaze <nnaze@google.com>

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=67868950
  • Loading branch information
nanaze authored and mknichel committed May 27, 2017
1 parent 9a87498 commit a2b8f2c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
</pre>

# Usage
Expand Down
2 changes: 1 addition & 1 deletion dispatcher_auto.js
Expand Up @@ -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');

Expand Down
2 changes: 1 addition & 1 deletion eventcontract_auto.js
Expand Up @@ -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');

Expand Down
2 changes: 1 addition & 1 deletion eventcontract_example.js
Expand Up @@ -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');

Expand Down

0 comments on commit a2b8f2c

Please sign in to comment.