Update of /cvsroot/boost/boost/libs/fusion/doc
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25297

Modified Files:
        sequences.qbk 
Log Message:
fixes typos: at<0>(...


Index: sequences.qbk
===================================================================
RCS file: /cvsroot/boost/boost/libs/fusion/doc/sequences.qbk,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- sequences.qbk       22 Mar 2007 22:43:09 -0000      1.4
+++ sequences.qbk       2 Apr 2007 15:45:59 -0000       1.5
@@ -200,7 +200,7 @@
 [variablelist Notation
     [[`s`]       [A Random Access Sequence]]
     [[`S`]       [A Random Access Sequence type]]
-    [[`N`]       [An integral constant]]
+    [[`N`]       [An __mpl_integral_constant__]]
     [[`o`]       [An arbitrary object]]
     [[`e`]       [A Sequence element]]
 ]
@@ -491,7 +491,7 @@
     [[`car`]            [An arbitrary data]]
     [[`cdr`]            [Another `cons` list]]
     [[`s`]              [A __forward_sequence__]]
-    [[`N`]              [An Integral Constant]]
+    [[`N`]              [An __mpl_integral_constant__]]
 ]
 
 [heading Expression Semantics]
@@ -519,8 +519,8 @@
 [heading Example]
 
     cons<int, cons<float> > l(12, cons<float>(5.5f));
-    std::cout << __at__<0>(l) << std::endl;
-    std::cout << __at__<1>(l) << std::endl;
+    std::cout << __at_c__<0>(l) << std::endl;
+    std::cout << __at_c__<1>(l) << std::endl;
 
 [endsect]
 
@@ -576,7 +576,7 @@
     [[`l`]              [An instance of `list`]]
     [[`e0`...`en`]      [Heterogeneous values]]
     [[`s`]              [A __forward_sequence__]]
-    [[`N`]              [An Integral Constant]]
+    [[`N`]              [An __mpl_integral_constant__]]
 ]
 
 [heading Expression Semantics]
@@ -602,8 +602,8 @@
 [heading Example]
 
     list<int, float> l(12, 5.5f);
-    std::cout << __at__<0>(l) << std::endl;
-    std::cout << __at__<1>(l) << std::endl;
+    std::cout << __at_c__<0>(l) << std::endl;
+    std::cout << __at_c__<1>(l) << std::endl;
 
 [endsect]
 
@@ -1678,7 +1678,7 @@
 [table
     [[Parameter]    [Requirement]                           [Description]]
     [[`seq`]        [Model of __random_access_sequence__]   [The sequence we 
wish to investigate.]]
-    [[`N`]          [An __mpl__ integral constant]          [An index from the 
beginning of the 
+    [[`N`]          [An __mpl_integral_constant__]          [An index from the 
beginning of the 
                                                              sequence.]]
 ]
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to