diff options
author | Michał Górny <mgorny@gentoo.org> | 2016-01-24 23:15:58 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2016-01-24 23:58:38 +0100 |
commit | 4412ca2c79a50481eff42550e9d63cba74c9ffc4 (patch) | |
tree | c9fc5379b3c3097e4235ec64664ef2d893dd58ad /dev-haskell/psqueues | |
parent | package.use.mask studio for net-analyzer/icinga2 (diff) | |
download | gentoo-4412ca2c79a50481eff42550e9d63cba74c9ffc4.tar.gz gentoo-4412ca2c79a50481eff42550e9d63cba74c9ffc4.tar.bz2 gentoo-4412ca2c79a50481eff42550e9d63cba74c9ffc4.zip |
Unify quoting in metadata.xml files for machine processing
Force unified quoting in all metadata.xml files since lxml does not
preserve original use of single and double quotes. Ensuring unified
quoting before the process allows distinguishing the GLEP 67-related
metadata.xml changes from unrelated quoting changes.
Diffstat (limited to 'dev-haskell/psqueues')
-rw-r--r-- | dev-haskell/psqueues/metadata.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-haskell/psqueues/metadata.xml b/dev-haskell/psqueues/metadata.xml index d4c0b904bde1..f44e265cde02 100644 --- a/dev-haskell/psqueues/metadata.xml +++ b/dev-haskell/psqueues/metadata.xml @@ -8,7 +8,7 @@ three different flavors. * @OrdPSQ k p v@, which uses the @Ord k@ instance to provide fast insertion, - deletion and lookup. This implementation is based on Ralf Hinze's + deletion and lookup. This implementation is based on Ralf Hinze's <http://citeseer.ist.psu.edu/hinze01simple.html A Simple Implementation Technique for Priority Search Queues>. Hence, it is similar to the <http://hackage.haskell.org/package/PSQueue PSQueue> library, although it is @@ -19,7 +19,7 @@ (like @IntMap@) with an additional min-heap property. * @HashPSQ k p v@ is a fairly straightforward extension of @IntPSQ@: it - simply uses the keys' hashes as indices in the @IntPSQ@. If there are any + simply uses the keys' hashes as indices in the @IntPSQ@. If there are any hash collisions, it uses an @OrdPSQ@ to resolve those. The performance of this implementation is comparable to that of @IntPSQ@, but it is more widely applicable since the keys are not restricted to @Int@, but rather to any @@ -43,6 +43,6 @@ * Schedulers; - * Pathfinding algorithms, such as Dijkstra's and A*. + * Pathfinding algorithms, such as Dijkstra's and A*. </longdescription> </pkgmetadata> |