Commit d810b583 authored by Adam Barth's avatar Adam Barth

Merge pull request #1067 from devoncarew/gen_docs

working on generating docs as part of the build
parents 48f600f8 eb869d09
...@@ -3,3 +3,4 @@ ...@@ -3,3 +3,4 @@
AUTHORS AUTHORS
LICENSE LICENSE
pubspec.lock pubspec.lock
doc/api/
{
"firebase": "skydocs",
"public": "api",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
]
}
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Includes and re-exports all Sky rendering classes. /// The Sky render tree.
///
/// The Sky render tree /// This library includes and re-exports all Sky rendering classes.
library rendering; library rendering;
export 'package:sky/src/rendering/auto_layout.dart'; export 'package:sky/src/rendering/auto_layout.dart';
......
...@@ -247,7 +247,7 @@ abstract class Widget { ...@@ -247,7 +247,7 @@ abstract class Widget {
} }
} }
/// Walks the immediate children of this widget /// Walks the immediate children of this widget.
/// ///
/// Override this if you have children and call walker on each child. /// Override this if you have children and call walker on each child.
/// Note that you may be called before the child has had its parent /// Note that you may be called before the child has had its parent
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
// Includes and re-exports all Sky widgets classes. /// The Sky widget framework.
///
/// The Sky widget framework /// This library includes and re-exports all Sky widgets classes.
library widgets; library widgets;
export 'package:sky/src/widgets/animated_component.dart'; export 'package:sky/src/widgets/animated_component.dart';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment