Skip to content

Commit 845b625

Browse files
committed
Merge branch 'master' into next
1 parent a9bbeeb commit 845b625

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docs/backbone.radio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ as a dependency.
267267
* `channelName` - defines the Radio channel that will be used for the requests and/or events
268268
* `getChannel()` - returns a Radio.Channel instance using `channelName`
269269
* `radioEvents` - defines an events hash with the events to be listened and its respective handlers
270-
* `radioRequets` - defines an events hash with the requests to be replied and its respective handlers
270+
* `radioRequests` - defines an events hash with the requests to be replied and its respective handlers
271271

272272
### Examples
273273

docs/marionette.region.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -397,12 +397,9 @@ instantiated using the template.
397397
```javascript
398398
const myView = new MyView();
399399

400-
const template = _.template('This is the <%- section %> page');
401-
const templateContext = templateContext: { section: 'main' };
402-
403400
myView.showChildView('main', {
404-
template: template,
405-
templateContext: templateContext
401+
template: _.template('This is the <%- section %> page'),
402+
templateContext: { section: 'main' }
406403
});
407404

408405
myView.showChildView('header', _.template('Welcome to the site'));

0 commit comments

Comments
 (0)