From 2468f39500a6efe7de502ee7af00a1732beb0ab2 Mon Sep 17 00:00:00 2001 From: "Davis W. Frank, dwfrank" Date: Fri, 17 Sep 2010 17:59:19 -0700 Subject: [PATCH] Fix bullet list. --- user-guide.html.markdown | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/user-guide.html.markdown b/user-guide.html.markdown index b9adcec..c1deed4 100644 --- a/user-guide.html.markdown +++ b/user-guide.html.markdown @@ -30,17 +30,17 @@ Jasmine is our dream JavaScript testing framework. It's heavily influenced by, a Jasmine was designed with a few principles in mind. We believe that a good JavaScript testing framework: - * should not be tied to any browser, framework, platform, or host language. - * should have idiomatic and unsurprising syntax. - * should work anywhere JavaScript can run, including browsers, servers, phones, etc. - * shouldn't intrude in your application's territory (e.g. by cluttering the global namespace). - * should play well with IDEs (e.g. test code should pass static analysis). +* should not be tied to any browser, framework, platform, or host language. +* should have idiomatic and unsurprising syntax. +* should work anywhere JavaScript can run, including browsers, servers, phones, etc. +* shouldn't intrude in your application's territory (e.g. by cluttering the global namespace). +* should play well with IDEs (e.g. test code should pass static analysis). Some of our goals while writing Jasmine: - * it should encourage good testing practices. - * it should integrate easily with continuous build systems. - * it should be simple to get started with. +* it should encourage good testing practices. +* it should integrate easily with continuous build systems. +* it should be simple to get started with. The result is Jasmine, and we love test-driving our code with it. Enjoy.