From 86022fb06eae0a89500a92c6f55126e3162a66cd Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Fri, 2 Aug 2013 14:20:38 -0700 Subject: [PATCH] Docs for Match.Integer --- docs/client/api.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/client/api.html b/docs/client/api.html index 618d2f3a7a..128cb20048 100644 --- a/docs/client/api.html +++ b/docs/client/api.html @@ -2344,10 +2344,15 @@ The following patterns can be used as pattern arguments to `check` and `Match.te Matches any value. {{/dtdd}} +{{#dtdd "Match.Integer"}} +Matches signed 32-bit integer. +{{/dtdd}} + {{#dtdd "String, Number, Boolean, undefined, null"}} Matches a primitive of the given type. {{/dtdd}} + {{#dtdd "[pattern]"}} A one-element array matches an array of elements, each of which match *pattern*. For example, `[Number]` matches a (possibly empty) array of numbers;