Skip to content

Commit

Permalink
All files started with 1st level header, but only 4 files started wit…
Browse files Browse the repository at this point in the history
…h 2nd.

Signed-off-by: Hirohisa Kawase <[email protected]>
  • Loading branch information
HiroKws committed Jan 21, 2013
1 parent e122cb0 commit f5724a5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion database.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Basic Database Usage
# Basic Database Usage

- [Configuration](#configuration)
- [Running Queries](#running-queries)
Expand Down
14 changes: 7 additions & 7 deletions migrations.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrations & Seeding
# Migrations & Seeding

- [Introduction](#introduction)
- [Creating Migrations](#creating-migrations)
Expand Down Expand Up @@ -74,16 +74,16 @@ Laravel also includes a simple way to seed your database with test data using se
return array(

array(
'email' => '[email protected]',
'votes' => 10,
'created_at' => new DateTime,
'email' => '[email protected]',
'votes' => 10,
'created_at' => new DateTime,
'updated_at' => new DateTime,
),

array(
'email' => '[email protected]',
'votes' => 20,
'created_at' => new DateTime,
'email' => '[email protected]',
'votes' => 20,
'created_at' => new DateTime,
'updated_at' => new DateTime,
),

Expand Down
2 changes: 1 addition & 1 deletion queries.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Query Builder
# Query Builder

- [Introduction](#introduction)
- [Selects](#selects)
Expand Down
2 changes: 1 addition & 1 deletion schema.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Schema Builder
# Schema Builder

- [Introduction](#introduction)
- [Creating & Dropping Tables](#creating-and-dropping-tables)
Expand Down

0 comments on commit f5724a5

Please sign in to comment.