From 986778cf0c69b80cdd1f554e612db853d8351820 Mon Sep 17 00:00:00 2001 From: Peter Robins Date: Wed, 18 Jun 2014 08:10:26 +0100 Subject: [PATCH] Correct minor typo in tasks/readme --- tasks/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/readme.md b/tasks/readme.md index 51aa3aaea6..f2eb673667 100644 --- a/tasks/readme.md +++ b/tasks/readme.md @@ -16,7 +16,7 @@ Build configuration files are JSON files that are used to determine what should **Required configuration properties** * **exports** - `Array.` An array of symbol names or patterns to be exported (names that are used in your application). For example, including `"ol.Map"` will export the map namespace including the constructor. Method names are prefixed with `#`. So `"ol.Map#getViewport"` will export the map's `getViewport` method. You can use a `*` at the end to match multiple names. The pattern `"ol.Map#*"` will export all exportable map methods. - Note that only the 'exportable' names can be listed here, that is, those are part of the supported API (see apidoc/readme.md for more details). If you want to include a property or method that is not part of the API (and be aware that these may change or be removed), you will have to specifically export these yourself, for example, with `goog.exportProperty`. + Note that only the 'exportable' names can be listed here, that is, those that are part of the supported API (see apidoc/readme.md for more details). If you want to include a property or method that is not part of the API (and be aware that these may change or be removed), you will have to specifically export these yourself, for example, with `goog.exportProperty`. Note too that some names, like `getView` in `ol.Map`, are always exported (with `goog.exportProperty` in the source). You do not have to include these, though it does not harm if you do. **Optional configuration properties**