Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
polish and operation
  • Loading branch information
lichtkind committed May 8, 2012
1 parent 2950112 commit 2aa4b00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 5 additions & 3 deletions docs/appendix-g-glossary.txt
Expand Up @@ -23,8 +23,9 @@ or "What kind of [*iterators*](#iterators) are present and how they are spelled?

<a id="and"/>
**and** &mdash;
logical operation that has only the result **True** if both operands
(incoming information) are also true, otherwise result is **False**
logical operation which results in [**True**](appendix-a-index.html#True)
only in case both operands (incoming information) are also **True**,
otherwise the result is [**False**](appendix-a-index.html#True),
following operator working with that logic:
[**|**](appendix-a-index.html#junctive-and),
[**||**](appendix-a-index.html#logical-and),
Expand All @@ -34,7 +35,8 @@ following operator working with that logic:
[**all**](appendix-a-index.html#all),
[**and**](appendix-a-index.html#and)
[**andthen**](appendix-a-index.html#andthen) &mdash;
other logical operations are [*or*](#or), [*xor*](#xor), [*not*](#not)
other operations in [*bool context*](#bool-context) are:
[*or*](#or), [*xor*](#xor), [*not*](#not)

<a id="argument"/>
**argument** &mdash;
Expand Down
3 changes: 1 addition & 2 deletions docs/report.pl
Expand Up @@ -41,8 +41,7 @@
$sum{'anchor'}, $sum{'link'}, $sum{'line'}, $sum{'size'};


# Tester
print "TODO:\n";
print "TODO:\n";
open $FH, '<', 'appendix-a-index.txt';
$content = do {local $/; <$FH>};
my $v =()= $content =~ /\&mdash;\n\n/g;
Expand Down

0 comments on commit 2aa4b00

Please sign in to comment.