Skip to content

Commit 20549d6

Browse files
committed
Merge branch '2.0'
2 parents 94f4bd6 + f204336 commit 20549d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cookbook/assetic/yuicompressor.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Disable Minification in Debug Mode
125125

126126
Minified JavaScripts and Stylesheets are very difficult to read, let alone
127127
debug. Because of this, Assetic lets you disable a certain filter when your
128-
application is in debug mode. You can do this be prefixing the filter name
128+
application is in debug mode. You can do this by prefixing the filter name
129129
in your template with a question mark: ``?``. This tells Assetic to only
130130
apply this filter when debug mode is off.
131131

@@ -157,4 +157,4 @@ apply this filter when debug mode is off.
157157

158158

159159
.. _`YUI Compressor`: http://developer.yahoo.com/yui/compressor/
160-
.. _`Download the JAR`: http://yuilibrary.com/downloads/#yuicompressor
160+
.. _`Download the JAR`: http://yuilibrary.com/downloads/#yuicompressor

cookbook/doctrine/reverse_engineering.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ to a post record thanks to a foreign key constraint.
3232
`title` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
3333
`content` longtext COLLATE utf8_unicode_ci NOT NULL,
3434
`created_at` datetime NOT NULL,
35-
PRIMARY KEY (`id`),
35+
PRIMARY KEY (`id`)
3636
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
3737
3838
CREATE TABLE `blog_comment` (

0 commit comments

Comments
 (0)