From c2614543b1a1d0e2e8287152344851b9adb217c4 Mon Sep 17 00:00:00 2001 From: Dean Taylor Date: Sun, 19 Oct 2014 23:55:19 +0100 Subject: [PATCH] Correct minor spelling mistakes @sam highlighted I made a spelling mistake in a commit - thought I would throw a few more in. --- test/javascripts/lib/markdown-test.js.es6 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/javascripts/lib/markdown-test.js.es6 b/test/javascripts/lib/markdown-test.js.es6 index 2fa4f7066c5..beecf3c9743 100644 --- a/test/javascripts/lib/markdown-test.js.es6 +++ b/test/javascripts/lib/markdown-test.js.es6 @@ -26,7 +26,7 @@ test("basic cooking", function() { cooked("common/_special_font_face.html.erb", "

common/_special_font_face.html.erb

", "it doesn't intraword with a slash"); cooked("hello \\*evil\\*", "

hello *evil*

", "it supports escaping of asterisks"); cooked("hello \\_evil\\_", "

hello _evil_

", "it supports escaping of italics"); - cooked("brussel sproutes are *awful*.", "

brussel sproutes are awful.

", "it doesn't swallow periods."); + cooked("brussels sprouts are *awful*.", "

brussels sprouts are awful.

", "it doesn't swallow periods."); }); test("Nested bold and italics", function() { @@ -153,7 +153,7 @@ test("Links", function() { test("simple quotes", function() { cooked("> nice!", "

nice!

", "it supports simple quotes"); - cooked(" > nice!", "

nice!

", "it allows quotes with preceeding spaces"); + cooked(" > nice!", "

nice!

", "it allows quotes with preceding spaces"); cooked("> level 1\n> > level 2", "

level 1

level 2

", "it allows nesting of blockquotes"); @@ -360,7 +360,7 @@ test("Code Blocks", function() { cooked(" ```\n hello\n ```", "
```\nhello\n```
", - "only detect ``` at the begining of lines"); + "only detect ``` at the beginning of lines"); cooked("```ruby\ndef self.parse(text)\n\n text\nend\n```", "

def self.parse(text)\n\n  text\nend

", @@ -490,5 +490,5 @@ test("censoring", function() { "it doesn't censor words unless they have boundaries."); cooked("you are a whizzer! I love cheesewhiz. Whiz.", "

you are a ■■■■■■■! I love cheesewhiz. ■■■■.

", - "it censor words even if previous partical matches exist."); + "it censors words even if previous partial matches exist."); });