Skip to content

Commit

Permalink
Remove a stray greater than sign after a PHP tag in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
evansolomon committed Jul 10, 2012
1 parent 33bee3b commit 982969f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -7,7 +7,7 @@ A WordPress transients interface with support for soft-expiration (use old conte
In this simple example, we're defining a feed-fetching callback, and then using `tlc_transient` with a chain to point to that callback and use it, all in one line. Note that since we haven't used `background_only()`, the initial load of this **will** cause the page to pause.

```php
<?php>
<?php
// Define your callback (other examples use this)
function my_callback() {
return wp_remote_retrieve_body(
Expand Down Expand Up @@ -69,4 +69,4 @@ echo tlc_transient( 'example-feed' )
->background_only()
->get();
?>
```
```

0 comments on commit 982969f

Please sign in to comment.