From 4c8b1d9f30136eb5be017f72746399cc9adef54b Mon Sep 17 00:00:00 2001 From: William Cohen Date: Thu, 20 Jan 2011 15:47:11 -0500 Subject: [PATCH] PR12412: Make the text agree with the example (should be reads) --- doc/SystemTap_Beginners_Guide/en-US/Array-Operations.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/SystemTap_Beginners_Guide/en-US/Array-Operations.xml b/doc/SystemTap_Beginners_Guide/en-US/Array-Operations.xml index 6999d7dc9..2df5df3bb 100644 --- a/doc/SystemTap_Beginners_Guide/en-US/Array-Operations.xml +++ b/doc/SystemTap_Beginners_Guide/en-US/Array-Operations.xml @@ -885,7 +885,7 @@ probe vfs.read Note - In the context of , count returns the amount of data written by the returned execname() to the virtual file system. + In the context of , count returns the amount of data read by the returned execname() to the virtual file system. @@ -953,7 +953,7 @@ probe vfs.read array operations - Returns the number of all values stored into the variable/array index expression. Given the sample probe in , the expression @count(writes[execname()]) will return how many values are stored in each unique key in array writes. + Returns the number of all values stored into the variable/array index expression. Given the sample probe in , the expression @count(reads[execname()]) will return how many values are stored in each unique key in array reads. @@ -989,7 +989,7 @@ probe vfs.read - Returns the sum of all values stored into the variable/array index expression. Again, given sample probe in , the expression @sum(writes[execname()]) will return the total of all values stored in each unique key in array writes. + Returns the sum of all values stored into the variable/array index expression. Again, given sample probe in , the expression @sum(reads[execname()]) will return the total of all values stored in each unique key in array reads. -- 2.43.5