Give up on documenting facts current api.

This commit is contained in:
Nick Martin
2013-12-15 19:40:57 -08:00
parent 9dfa0ee95f
commit a6c8b5eef3
2 changed files with 3 additions and 4 deletions

View File

@@ -30,9 +30,7 @@ apply the patch and will instead disable websockets.
client code changes; server-only code changes will not cause the page
to reload.
* New 'facts' package publishes internal statistics about Meteor. To
use, simply `meteor add facts` then add `{{> serverFacts}}` somewhere
in your interface.
* New 'facts' package publishes internal statistics about Meteor.
* Add an explicit check that publish functions return a cursor, an array
of cursors, or a falsey value. This is a safety check to to prevent

View File

@@ -1,5 +1,6 @@
Package.describe({
summary: "Publish internal app statistics"
summary: "Publish internal app statistics",
internal: true
});
Package.on_use(function (api) {