Skip to content

Commit

Permalink
Fix README.
Browse files Browse the repository at this point in the history
  • Loading branch information
blambeau committed Jun 13, 2012
1 parent b2adebd commit 33d07a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -23,7 +23,7 @@ WLang is a powerful code generation and templating engine, implemented on top of
WLang 2.0 also has a few remaining issues.

* It does not support rubinius so far, due to an incompatibility with the Citrus parser generator.
* It also have some issues with spacing; not a big issue for HTML rendering but might prevent certain generation tasks.
* It has some issues with spacing; not a big issue for HTML rendering but might prevent certain generation tasks.

## Tunable templating engine

Expand Down Expand Up @@ -67,7 +67,7 @@ template = Tilt.new("path/to/a/template.wlang") # suppose 'Hello ${who}!'
template.render(:who => "world")
# => Hello world!

template = Tilt.new(hello_path.to_s, :dialect => Highlighter)
template = Tilt.new("path/to/a/template.wlang", :dialect => Highlighter)
template.render(:who => "world")
# => Hello WORLD!
```
Expand Down

0 comments on commit 33d07a3

Please sign in to comment.