Procházet zdrojové kódy

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 před 8 roky
rodič
revize
b74a43570a
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  1. +4
    -1
      README.md

+ 4
- 1
README.md Zobrazit soubor

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


Načítá se…
Zrušit
Uložit