diff options
author | Akira TAGOH <akira@tagoh.org> | 2018-04-19 11:45:45 +0900 |
---|---|---|
committer | Akira TAGOH <akira@tagoh.org> | 2018-04-19 11:45:45 +0900 |
commit | c78afa906699933e87889895ca2039887943b639 (patch) | |
tree | 33081635debeba1ad2d48d599df3e9de167eff86 /doc | |
parent | 7ad010e80bdf8e41303e322882ece908f5e04c74 (diff) | |
download | fontconfig-c78afa906699933e87889895ca2039887943b639.tar.gz |
Fix typo in doc
https://bugs.freedesktop.org/show_bug.cgi?id=106128
Diffstat (limited to 'doc')
-rw-r--r-- | doc/fontconfig-user.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/fontconfig-user.sgml b/doc/fontconfig-user.sgml index e065ff7..43ac957 100644 --- a/doc/fontconfig-user.sgml +++ b/doc/fontconfig-user.sgml @@ -589,9 +589,9 @@ This is an example of a system-wide configuration file Names not including any well known alias are given 'sans-serif' --> <match target="pattern"> - <test qual="all" name="family" mode="not_eq"><string>sans-serif</string></test> - <test qual="all" name="family" mode="not_eq"><string>serif</string></test> - <test qual="all" name="family" mode="not_eq"><string>monospace</string></test> + <test qual="all" name="family" compare="not_eq"><string>sans-serif</string></test> + <test qual="all" name="family" compare="not_eq"><string>serif</string></test> + <test qual="all" name="family" compare="not_eq"><string>monospace</string></test> <edit name="family" mode="append_last"><string>sans-serif</string></edit> </match> @@ -653,7 +653,7 @@ This is an example of a system-wide configuration file add 'monospace' as the alternative --> <match target="pattern"> - <test name="family" mode="eq"> + <test name="family" compare="eq"> <string>Courier New</string> </test> <edit name="family" mode="prepend"> @@ -661,7 +661,7 @@ This is an example of a system-wide configuration file </edit> </match> <match target="pattern"> - <test name="family" mode="eq"> + <test name="family" compare="eq"> <string>Courier</string> </test> <edit name="family" mode="prepend"> |