Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nasa/openmct.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVictor Woeltjen <victor.woeltjen@nasa.gov>2016-11-02 19:24:27 +0300
committerGitHub <noreply@github.com>2016-11-02 19:24:27 +0300
commit5aa95c0415f9d943b269d84eebd96735b2bf06b8 (patch)
tree54b5f742a16e050b2d964a5e603acd4de17f8467 /docs
parenteca9968a9f34d3903ef68c8fbd40e89ec37e463a (diff)
parent1f6ca8bcc3121573ffc293b132a8eff6702d2419 (diff)
Merge pull request #1207 from Proekspert/fix-tutorial
[Documentation] Fixed module reference
Diffstat (limited to 'docs')
-rw-r--r--docs/src/tutorials/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/src/tutorials/index.md b/docs/src/tutorials/index.md
index d8842de9d..350d8f2c6 100644
--- a/docs/src/tutorials/index.md
+++ b/docs/src/tutorials/index.md
@@ -675,10 +675,10 @@ it in our bundle definition, as an extension of category `controllers`:
```diff
define([
'legacyRegistry',
- './src/controllers/TodoController'
++ './src/controllers/TodoController'
], function (
legacyRegistry,
- TodoController
++ TodoController
) {
legacyRegistry.register("tutorials/todo", {
"name": "To-do Plugin",
@@ -2948,7 +2948,7 @@ will implement:
/*global define*/
define(
- ['./src/ExampleTelemetrySeries'],
+ ['./ExampleTelemetrySeries'],
function (ExampleTelemetrySeries) {
"use strict";