From e35e5bb73f3628906553709ac0f5beb8f565c61a Mon Sep 17 00:00:00 2001 From: Micael Jarniac Date: Fri, 2 Oct 2020 19:12:20 -0300 Subject: [PATCH] docs(contributing): fix commit message examples (#1648) It had the backticks (`\``) around the messages, but I think they were unintentional, probably a leftover from copy-pasting. --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ac3f91464d..a3c40c5851 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -183,17 +183,17 @@ The footer should contain any information about **Breaking Changes** and is also #### Examples ```commit -`fix(pencil): stop graphite breaking when too much pressure applied` +fix(pencil): stop graphite breaking when too much pressure applied ``` ```commit -`feat(pencil): add 'graphiteWidth' option` +feat(pencil): add 'graphiteWidth' option Fix #42 ``` ```commit -perf(pencil): remove graphiteWidth option` +perf(pencil): remove graphiteWidth option BREAKING CHANGE: The graphiteWidth option has been removed.