diff options
author | Sebastian Geerken <devnull@localhost> | 2013-09-27 12:50:33 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2013-09-27 12:50:33 +0200 |
commit | 80e0cbce7a726a898905d6116e4e237d3af5432b (patch) | |
tree | 955bb0f4f403db7adce263a9307100d3cd9fcce5 /src | |
parent | 2aac3c8d2edf41ac12980c2d25f8b42e76a8ce90 (diff) |
Typo (confusing dimensions!).
Diffstat (limited to 'src')
-rw-r--r-- | src/cssparser.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cssparser.cc b/src/cssparser.cc index 85abb55a..c84a0721 100644 --- a/src/cssparser.cc +++ b/src/cssparser.cc @@ -1344,8 +1344,8 @@ void CssParser::parseShorthandBackgroundPosition (int sh_index, // horizontal position; in most cases in this order. However, as long it is // unambigous, the order can be switched: "10px left" and "left 10px" are // both possible and have the same effect. For this reason, we test both - // possible orders: i = 0 means vertical/horizontal, i = 1 means - // horizontal/vertical. + // possible orders: i = 0 means horizontal/vertical, i = 1 means + // vertical/horizontal. // TODO Still not fully working. |