Skip to content

Commit

Permalink
fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstadler committed Sep 24, 2024
1 parent 186019a commit 76eda93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/xquery2.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ declare function ess:letter2tr($letter as document-node()?) as element(xhtml:tr)
let $sender := ($letter//tei:correspAction[@type='sent']/tei:persName)[1] => normalize-space()
let $addressee := ($letter//tei:correspAction[@type='received']/tei:persName)[1] => normalize-space()
return
if($sender or $addressee or $date)
if($sender or $addressee)
then
<xhtml:tr>
<xhtml:td>{$id}</xhtml:td>
Expand Down

0 comments on commit 76eda93

Please sign in to comment.