From 4c86fa30d83aa06780825c579cbb2b732ffe4f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=BA=D0=BE=D0=B2=D0=BE=D1=80=D0=BE=D0=B4=D0=B0=20?= =?UTF-8?q?=D0=9D=D0=B8=D0=BA=D0=B8=D1=82=D0=B0=20=D0=90=D0=BD=D0=B4=D1=80?= =?UTF-8?q?=D0=B5=D0=B5=D0=B2=D0=B8=D1=87?= Date: Sat, 6 Aug 2016 00:34:04 +0300 Subject: [PATCH] doc: fix a markdown error in CTC meeting minutes This fixes a markdown formatting error in 2016-07-13 CTC meeting minutes, __proto__ was rendered incorrectly. This was found by remark-lint. PR-URL: https://github.com/nodejs/node/pull/7729 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Robert Jefe Lindstaedt --- doc/ctc-meetings/2016-07-13.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ctc-meetings/2016-07-13.md b/doc/ctc-meetings/2016-07-13.md index 467b95deb28754..0c38f3b066a13a 100644 --- a/doc/ctc-meetings/2016-07-13.md +++ b/doc/ctc-meetings/2016-07-13.md @@ -169,7 +169,7 @@ ELOOP issue has been resolved. Windows problem being addressed in another PR. Ma ### http: don't inherit from Object.prototype [#6102](https://github.com/nodejs/node/pull/6102) -@mscdex: Prevent clash of header names with properties inherited from Object (e.g., __proto__). An object with a null prototype is already being used for the same purpose in `querystring.parse` since v6 release. +@mscdex: Prevent clash of header names with properties inherited from Object (e.g., `__proto__`). An object with a null prototype is already being used for the same purpose in `querystring.parse` since v6 release. @mscdex: Some have suggested cherry-picking some methods from Object such as `toString`: