From 86b169dab316af8203136c2bda05f98dcf0af734 Mon Sep 17 00:00:00 2001
From: Nathan Ridge
Date: Thu, 3 Jan 2013 01:06:39 +0000
Subject: [PATCH] [range] fixed #5440 (typo in documentation for
'inner_product' algorithm)
[SVN r82327]
---
doc/html/index.html | 2 +-
doc/html/range/reference/algorithms/numeric/inner_product.html | 3 ++-
doc/reference/numeric/inner_product.qbk | 3 ++-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/doc/html/index.html b/doc/html/index.html
index 02c06d1..0bcae2c 100644
--- a/doc/html/index.html
+++ b/doc/html/index.html
@@ -147,7 +147,7 @@
-Last revised: January 03, 2013 at 00:57:19 GMT |
+Last revised: January 03, 2013 at 01:05:23 GMT |
|
diff --git a/doc/html/range/reference/algorithms/numeric/inner_product.html b/doc/html/range/reference/algorithms/numeric/inner_product.html
index 4c2742d..2db9eb5 100644
--- a/doc/html/range/reference/algorithms/numeric/inner_product.html
+++ b/doc/html/range/reference/algorithms/numeric/inner_product.html
@@ -47,7 +47,8 @@
Value inner_product( const SinglePassRange1& rng1,
const SinglePassRange2& rng2,
Value init,
- BinaryOperation1 op1 );
+ BinaryOperation1 op1,
+ BinaryOperation2 op2 );
diff --git a/doc/reference/numeric/inner_product.qbk b/doc/reference/numeric/inner_product.qbk
index 1c6fc51..bb4fc3c 100644
--- a/doc/reference/numeric/inner_product.qbk
+++ b/doc/reference/numeric/inner_product.qbk
@@ -23,7 +23,8 @@ template