From 7b763c8d250da6d66bccdb19f9f281e348a11816 Mon Sep 17 00:00:00 2001 From: Jackson Tian Date: Mon, 25 Jan 2016 22:28:43 +0800 Subject: [PATCH] doc: fix code type of markdowns 1. correct code type in addons.markdown 2. add missed code type in crypto.markdown PR-URL: https://github.com/nodejs/node/pull/4858 Reviewed-By: Roman Reiss Reviewed-By: Colin Ihrig Reviewed-By: Roman Klauke --- doc/api/addons.markdown | 2 +- doc/api/crypto.markdown | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/addons.markdown b/doc/api/addons.markdown index f0ec1c3a1e2a91..c9aea3915cba65 100644 --- a/doc/api/addons.markdown +++ b/doc/api/addons.markdown @@ -366,7 +366,7 @@ adding the function as a property of `exports`. To test it, run the following JavaScript: -```cpp +```js // test.js const addon = require('./build/Release/addon'); diff --git a/doc/api/crypto.markdown b/doc/api/crypto.markdown index f37fcfa8e95653..0b97e0b6a1c7d5 100644 --- a/doc/api/crypto.markdown +++ b/doc/api/crypto.markdown @@ -235,7 +235,7 @@ decipher.end(); Example: Using `Decipher` and piped streams: -``` +```js const crypto = require('crypto'); const fs = require('fs'); const decipher = crypto.createDecipher('aes192', 'a password');