summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2009-06-24 22:29:22 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2009-06-24 22:29:22 +0000
commit8ffc86192a2cef29e2bff10d8287067011aaf1b7 (patch)
tree8ff9388f89155428de389589dd2e7e59efea772c
parentcc4d98bb8bf6177c523e0fbbc0b8385891528198 (diff)
downloadlibcss-8ffc86192a2cef29e2bff10d8287067011aaf1b7.tar.gz
libcss-8ffc86192a2cef29e2bff10d8287067011aaf1b7.tar.bz2
Fix c&p-induced lies
svn path=/trunk/libcss/; revision=7954
-rw-r--r--src/parse/properties/background.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/parse/properties/background.c b/src/parse/properties/background.c
index 0afef30..0ee4dbb 100644
--- a/src/parse/properties/background.c
+++ b/src/parse/properties/background.c
@@ -22,7 +22,7 @@
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
@@ -251,7 +251,7 @@ cleanup:
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
@@ -309,7 +309,7 @@ css_error parse_background_attachment(css_language *c,
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
@@ -384,7 +384,7 @@ css_error parse_background_color(css_language *c,
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
@@ -456,7 +456,7 @@ css_error parse_background_image(css_language *c,
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
@@ -648,7 +648,7 @@ css_error parse_background_position(css_language *c,
* \param result Pointer to location to receive resulting style
* \return CSS_OK on success,
* CSS_NOMEM on memory exhaustion,
- * CSS_INVALID if the input is not a valid background-attachment
+ * CSS_INVALID if the input is not valid
*
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.