From e444baa22fbe09761ba99796858f59e98f456a4b Mon Sep 17 00:00:00 2001 From: liuyl Date: Mon, 5 Aug 2013 17:01:44 +0800 Subject: [PATCH 1/2] remove image description --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index 42947bbcde..3174356369 100644 --- a/getting-started.html +++ b/getting-started.html @@ -77,7 +77,7 @@ bootstrap/ │ ├── bootstrap.min.js {% endhighlight %} -

This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*). The image files are compressed using ImageOptim, a Mac app for compressing PNGs.

+

This is the most basic form of Bootstrap: compiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (bootstrap.*), as well as compiled and minified CSS and JS (bootstrap.min.*).

jQuery required

Please note that all JavaScript plugins require jQuery to be included, as shown in the starter template.

From 5e9af6578ce0941f46b06f5dc05f066575a199dc Mon Sep 17 00:00:00 2001 From: Andy Trevorah Date: Mon, 5 Aug 2013 10:50:31 +0100 Subject: [PATCH 2/2] fixed small typo its => belonging to it it's => it is / it has --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ba2bfc52d3..060a3bd91d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,7 +48,7 @@ We only accept issues that are bug reports or feature requests. Bugs must be iso - Multiple-line approach (one property and value per line) - Always a space after a property's colon (.e.g, `display: block;` and not `display:block;`) - End all lines with a semi-colon -- For multiple, comma-separated selectors, place each selector on it's own line +- For multiple, comma-separated selectors, place each selector on its own line - Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks). ### JS