Skip to content

Commit

Permalink
Fix note classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuswilms committed Jul 2, 2016
1 parent f15bd11 commit 86e2cf1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 01_installation/03_web_servers.md
Expand Up @@ -109,7 +109,7 @@ Setup a site by right clicking "Sites" and click "Add Web Site"

Your li3 application should now be accessible via IIS.

<div class="note">
<div class="note note-info">
Tested with IIS7 (which is shipped with Windows 7).
</div>

Expand Down
4 changes: 2 additions & 2 deletions 05_models/05_querying.md
Expand Up @@ -176,8 +176,8 @@ Posts::find(23);
Posts::all();
```

<div class="note">
Note `list` is a keyword in PHP and so cannot be called magically like other finders.
<div class="note note-info">
Note <code>list</code> is a keyword in PHP and so cannot be called magically like other finders.
</div>

The example below shows two different approaches to finding all the posts related to the
Expand Down
2 changes: 1 addition & 1 deletion 09_common_tasks/05_caching.md
Expand Up @@ -93,7 +93,7 @@ allows you to use the best cache configuration for your use cache.
Cache::write('default', 'foo', 'bar');
```

<div class="note">
<div class="note note-hint">
The read/write and delete methods can handle multi keys/values or so called batch operations.
Simply pass an array of keys (and value pairs) to the respective method.
</div>
Expand Down

0 comments on commit 86e2cf1

Please sign in to comment.