Qt: Doc: Fix typo which marks document to be printed in console font.
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 2 Apr 2012 13:41:58 +0000 (13:41 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Mon, 2 Apr 2012 13:41:58 +0000 (13:41 +0000)
https://bugs.webkit.org/show_bug.cgi?id=82893

Patch by Casper van Donderen <casper.vandonderen@nokia.com> on 2012-04-02
Reviewed by Simon Hausmann.

The qtwebkit-bridge.qdoc file contained a typo where a \c {} was
missing its closing curly bracket, this marked the rest of the page as
text to be printed using the code/console font.
* docs/qtwebkit-bridge.qdoc:

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@112872 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebKit/qt/ChangeLog
Source/WebKit/qt/docs/qtwebkit-bridge.qdoc

index 892aba4..aea6d53 100644 (file)
@@ -1,3 +1,15 @@
+2012-04-02  Casper van Donderen  <casper.vandonderen@nokia.com>
+
+        Qt: Doc: Fix typo which marks document to be printed in console font.
+        https://bugs.webkit.org/show_bug.cgi?id=82893
+
+        Reviewed by Simon Hausmann.
+
+        The qtwebkit-bridge.qdoc file contained a typo where a \c {} was
+        missing its closing curly bracket, this marked the rest of the page as
+        text to be printed using the code/console font.
+        * docs/qtwebkit-bridge.qdoc:
+
 2012-04-02  Sheriff Bot  <webkit.review.bot@gmail.com>
 
         Unreviewed, rolling out r112651.
index 807cdae..2975d15 100644 (file)
 
     \snippet webkitsnippets/qtwebkit_bridge_snippets.cpp 10
 
-    The call to \c{connect() establishes a connection between the signal
+    The call to \c{connect()} establishes a connection between the signal
     \c{somethingChanged} and the slot \c{function}. Whenever the object
     \c{myObject} emits the signal \c{somethingChanged}, the slot \c{function}
     of the object \c{thisObject} gets called automatically. Let's illustrate