Sfoglia il codice sorgente

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 anni fa
parent
commit
b74a43570a
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      README.md

+ 4
- 1
README.md Vedi File

@@ -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


Loading…
Annulla
Salva