Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Fixed lang conventions.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljimenez committed Apr 24, 2014
1 parent 9026ff6 commit 3ef91e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions examples/quickstartguide/mojits/Read/controller.common.js
Expand Up @@ -7,8 +7,8 @@
/**
Controller for Mojio
After an application has been configured to use a mojit, the mojit controller can either do all of the work or
delegate the work to models and/or views. In the typical case, the mojit controller requests the model to
After an application has been configured to use a mojit, the mojit controller can either do all of the work or
delegate the work to models and/or views. In the typical case, the mojit controller requests the model to
retrieve data and then the controller serves that data to the views.
For more info, visit: http://developer.yahoo.com/cocktails/mojito/docs/intro/mojito_mvc.html#controllers
**/
Expand All @@ -20,7 +20,7 @@ For more info, visit: http://developer.yahoo.com/cocktails/mojito/docs/intro/moj
Displays guide content in a horizontally flickable scrollview.
@class ReadController
**/
YUI.add('read', function(Y, NAME) {
YUI.add('Read', function(Y, NAME) {
'use strict';
var LIB_MD;// Markdown library

Expand Down
2 changes: 1 addition & 1 deletion examples/quickstartguide/mojits/Read/lang/Read_en-US.js
Expand Up @@ -12,7 +12,7 @@ Visit http://developer.yahoo.com/cocktails/mojito/docs/code_exs/i18n_apps.html f
YUI.add("lang/Read_en-US", function (Y, NAME) {
'use strict';
Y.Intl.add(
"read", // associated mojit
"Read", // associated mojit
"en-US", // BCP 47 language tag
// key-value pairs for this module and language
{
Expand Down

0 comments on commit 3ef91e1

Please sign in to comment.