From 686a3277bee8d5a9abb48c4daa66d91100321029 Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Tue, 18 Apr 2017 00:37:28 -0300 Subject: [PATCH] Fix broken Markdown headings --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 135dfa1..2693158 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ SCP (secure file copy) wrapper for node.js ![scp](http://i.imgur.com/RrUKV.gif) -##install +## install npm install scp -##usage +## usage ````javascript var scp = require('scp'); @@ -27,9 +27,9 @@ scp.send(options, function (err) { }); ```` -##methods +## methods -###scp.send(options, cb) +### scp.send(options, cb) Send a file to a remote host (in your `~/.ssh/config`) @@ -47,7 +47,7 @@ scp.send({ }); ```` -###scp.get(options, cb) +### scp.get(options, cb) Transfer a file from a remote host (in your `~/.ssh/config`) to the current computer.