Skip to content
This repository has been archived by the owner on Nov 4, 2020. It is now read-only.

Fix broken headings in Markdown files #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This piece of route middleware moves the files to the upload directory specified
// files also get moved to the uploadDir specified
})

###get()
### get()

Retrieves a file from the upload directory.

Expand All @@ -46,7 +46,7 @@ Retrieves a file from the upload directory.
// data is the contents of the file
})

###put()
### put()

Puts a file to the upload directory.

Expand All @@ -58,7 +58,7 @@ Puts a file to the upload directory.
// See below for the contents of this object
})

###delete()
### delete()

Deletes a file from the upload directory.

Expand All @@ -69,7 +69,7 @@ Deletes a file from the upload directory.

})

###File object
### File object
The file objects that are returned from the middleware and put actions contain the following fields:

- size - size of the file
Expand Down