Skip to content

Commit 5171f25

Browse files
author
Schneider
committed
logical-and-struct: fix typo
1 parent 26af91c commit 5171f25

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/standard-library/logical-and-struct.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ int main( )
103103
// of d1 & d2, use the logical_and function object
104104
transform( d1.begin( ), d1.end( ), d2.begin( ),
105105
d3.begin( ), logical_and<bool>( ) );
106-
cout << "The deque which is the conjuction of d1 & d2 is:\n d3 = ( " ;
106+
cout << "The deque which is the conjunction of d1 & d2 is:\n d3 = ( " ;
107107
for ( iter3 = d3.begin( ) ; iter3 != d3.end( ) ; iter3++ )
108108
cout << *iter3 << " ";
109109
cout << ")" << endl;
@@ -115,6 +115,6 @@ Original deque:
115115
d1 = ( true true true true true false false )
116116
Original deque:
117117
d2 = ( true false true true false true false )
118-
The deque which is the conjuction of d1 & d2 is:
118+
The deque which is the conjunction of d1 & d2 is:
119119
d3 = ( true false true true false false false )
120120
```

0 commit comments

Comments
 (0)