summaryrefslogtreecommitdiff
path: root/src/parse/properties/font_family.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse/properties/font_family.c')
-rw-r--r--src/parse/properties/font_family.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/parse/properties/font_family.c b/src/parse/properties/font_family.c
index 60c069d..23c080b 100644
--- a/src/parse/properties/font_family.c
+++ b/src/parse/properties/font_family.c
@@ -98,8 +98,8 @@ static css_code_t font_family_value(css_language *c, const css_token *token, boo
* Post condition: \a *ctx is updated with the next token to process
* If the input is invalid, then \a *ctx remains unchanged.
*/
-css_error css__parse_font_family(css_language *c,
- const parserutils_vector *vector, int *ctx,
+css_error css__parse_font_family(css_language *c,
+ const parserutils_vector *vector, int *ctx,
css_style *result)
{
int orig_ctx = *ctx;
@@ -108,11 +108,11 @@ css_error css__parse_font_family(css_language *c,
bool match;
/* [ IDENT+ | STRING ] [ ',' [ IDENT+ | STRING ] ]* | IDENT(inherit)
- *
+ *
* In the case of IDENT+, any whitespace between tokens is collapsed to
* a single space
*
- * \todo Mozilla makes the comma optional.
+ * \todo Mozilla makes the comma optional.
* Perhaps this is a quirk we should inherit?
*/