Skip to content

Commit

Permalink
css example fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul M. Jones committed Dec 4, 2015
1 parent 70a296d commit 0b350b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Here is a contrived example of the various `escape()` helper methods:
<head>

<style>
body: {
body {
color: <?= $this->escape()->css($theme->color) ?>;
font-size: <?= $this->escape()->css($theme->font_size) ?>;
}
Expand Down Expand Up @@ -159,7 +159,7 @@ $j = $this->escape()->js;
<head>

<style>
body: {
body {
color: <?= $c($theme->color) ?>;
font-size: <?= $c($theme->font_size) ?>;
}
Expand Down Expand Up @@ -201,7 +201,7 @@ Here is a contrived example of the various static methods:
<head>

<style>
body: {
body {
color: <?= e::c($theme->color) ?>;
font-size: <?= e::c($theme->font_size) ?>;
}
Expand Down

0 comments on commit 0b350b4

Please sign in to comment.