Skip to content

Commit

Permalink
Fixed data source name mismatch in custom parameters example.
Browse files Browse the repository at this point in the history
  • Loading branch information
ascott18 committed Dec 7, 2018
1 parent 8c8b63b commit 3655fcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pages/modeling/model-components/data-sources.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ The properties created on the TypeScript objects are observables so they may be
.. code-block:: typescript
var list = new ListViewModels.PersonList();
var dataSource = new list.dataSources.NamesStartingWithA();
var dataSource = new list.dataSources.NamesStartingWith();
dataSource.startsWith("Jo");
dataSource.subscribe(list); // Optional - call to enable automatic reloading.
list.dataSource = dataSource;
Expand Down

0 comments on commit 3655fcf

Please sign in to comment.