summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/Representation6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/Representation b/docs/Representation
index b4e4a89..3eb63eb 100644
--- a/docs/Representation
+++ b/docs/Representation
@@ -14,6 +14,8 @@ struct selector {
size_t value_len;
} data; /**< Selector data */
+ struct selector *specifics; /**< Selector specifics */
+
combinator combinator_type; /**< Type of combinator */
struct selector *combinator; /**< Combining selector */
@@ -21,8 +23,8 @@ struct selector {
struct style *style; /**< Applicable style */
- struct selector *chain_next; /**< Next in hash chain */
- struct selector *chain_prev; /**< Previous in hash chain */
+ struct selector *next; /**< Next selector in list */
+ struct selector *prev; /**< Previous selector */
};
Rule: