summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRavi Nanjundappa <nravi.n@samsung.com>2014-11-11 15:07:57 +0530
committerBryce Harrington <bryce@osg.samsung.com>2014-11-12 10:38:52 -0800
commit121f384c0e231c9c5d9c937b216d342bfc7810a6 (patch)
tree3949ee0646a983bc811c6829d8084fc416076a82
parenta03f2ff72054c9530f98738aac729354a3f56102 (diff)
downloadcairo-121f384c0e231c9c5d9c937b216d342bfc7810a6.tar.gz
Fix one more warning from check-doc-syntax.sh
$ ./check-doc-syntax.sh Checking documentation for incorrect syntax ./cairo-pattern.c (3342): ERROR: Will invalid doc id (should be 'cairo_...:') The proposed changes fixes the warning about the documentation style used in cairo. Signed-off-by: Ravi Nanjundappa <nravi.n@samsung.com>
-rw-r--r--src/cairo-pattern.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-pattern.c b/src/cairo-pattern.c
index 4e3617af7..ac5d7af20 100644
--- a/src/cairo-pattern.c
+++ b/src/cairo-pattern.c
@@ -3338,12 +3338,12 @@ _cairo_pattern_is_clear (const cairo_pattern_t *abstract_pattern)
return FALSE;
}
-/**
+/*
* Will given row of back-translation matrix work with bilinear scale?
* This is true for scales larger than 1. Also it was judged acceptable
* for scales larger than .75. And if there is integer translation
* then a scale of exactly .5 works.
- **/
+ */
static int
use_bilinear(double x, double y, double t)
{