Skip to content

Commit

Permalink
Use & and | for conjunction and disjunction in formulae rather than l…
Browse files Browse the repository at this point in the history
…ogic operators.
  • Loading branch information
dsheets committed Aug 23, 2014
1 parent b5c02ee commit f8eb012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/o2wPackage.ml
Expand Up @@ -117,8 +117,8 @@ let to_html ~statistics universe pkg_info =
let pkg_issues = links "Issue Tracker" (OpamFile.OPAM.bug_reports pkg_opam) in
let pkg_tags = list "Tag" (OpamFile.OPAM.tags pkg_opam) in
let pkg_published = O2wMisc.string_of_timestamp pkg_info.published in
let html_conj = <:html<&#x2227;>> in
let html_disj = <:html<&#x2228;>> in
let html_conj = <:html<&amp;>> in
let html_disj = <:html<|>> in
let vset_of_name name =
try
OpamPackage.Name.Map.find name universe.versions
Expand Down

0 comments on commit f8eb012

Please sign in to comment.