summaryrefslogtreecommitdiffhomepage
path: root/kdb+.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'kdb+.html.markdown')
-rw-r--r--kdb+.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/kdb+.html.markdown b/kdb+.html.markdown
index 0573067d..2c8c83fa 100644
--- a/kdb+.html.markdown
+++ b/kdb+.html.markdown
@@ -74,7 +74,7 @@ floor 3.14159 / => 3
/ ...getting the absolute value...
abs -3.14159 / => 3.14159
/ ...and many other things
-/ see http://code.kx.com/q/ref/card/ for more
+/ see http://code.kx.com/q/ref/ for more
/ q has no operator precedence, everything is evaluated right to left
/ so results like this might take some getting used to
@@ -713,8 +713,8 @@ first each (1 2 3;4 5 6;7 8 9)
{x + y}\[1 2 3 4 5] / => 1 3 6 10 15 (i.e. the running sum)
{x + y}/[1 2 3 4 5] / => 15 (only the final result)
-/ There are other adverbs and uses, this is only intended as quick overview
-/ http://code.kx.com/q4m3/6_Functions/#67-adverbs
+/ There are other iterators and uses, this is only intended as quick overview
+/ http://code.kx.com/q4m3/6_Functions/#67-iterators
////// Scripts //////
/ q scripts can be loaded from a q session using the "\l" command