ソースを参照

Readme: Mustache.parse returns an array of Tokens

In the README the return type for Mustache.parse is listed as a String. It's actually an array of Tokens.
pull/657/head
Ben Brooks GitHub 8年前
コミット
b74a43570a
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更4行の追加1行の削除
  1. +4
    -1
      README.md

+ 4
- 1
README.md ファイルの表示

@@ -125,9 +125,12 @@ Mustache.render(
Mustache.parse(
template : String,
tags = ['{{', '}}'] : Tags,
) => String
) => Token[]

interface Token [String, String, Number, Number, Token[]?, Number?]

interface Tags [String, String]

```

## Templates


読み込み中…
キャンセル
保存