Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Unified Diff: src/site/_includes/docs/getting-started/_class.html

Issue 10788006: new site (Closed) Base URL: https://code.google.com/p/dartlang-site/@master
Patch Set: final patch Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/site/_config.yml ('k') | src/site/_includes/docs/getting-started/_interface.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/site/_includes/docs/getting-started/_class.html
diff --git a/src/site/_includes/docs/getting-started/_class.html b/src/site/_includes/docs/getting-started/_class.html
index f20b7a5e6f472f7c233f732d22ae44afd766c056..bc6a6d39e9f0dbffaf85da98690530602c37fe2f 100644
--- a/src/site/_includes/docs/getting-started/_class.html
+++ b/src/site/_includes/docs/getting-started/_class.html
@@ -212,15 +212,17 @@ class Greeter {
greeter.greet('types');
} </pre>
- <aside class="note">
- <strong>Note:</strong>
- You might have expected to see a <code>public</code> keyword
- in the preceding code,
- but there's no such thing in Dart.
- Every type in Dart is public unless its name
- starts with an underscore ("_").
- For example, <code>Greeter</code> is public,
- but <code>_Greeter</code> would be private.
+ <aside>
+ <div class="alert alert-info">
+ <strong>Tip:</strong>
+ You might have expected to see a <code>public</code> keyword
+ in the preceding code,
+ but there's no such thing in Dart.
+ Every type in Dart is public unless its name
+ starts with an underscore ("_").
+ For example, <code>Greeter</code> is public,
+ but <code>_Greeter</code> would be private.
+ </div>
</aside>
</dd>
</dl>
« no previous file with comments | « src/site/_config.yml ('k') | src/site/_includes/docs/getting-started/_interface.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698