Skip to content

Commit ece1cda

Browse files
authored
Merge pull request #295 from sshanks-kx/oldversions
removed differences from really old versions
2 parents 7db66da + 8e9ac89 commit ece1cda

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

docs/kb/inetd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ When a client attempts to connect to one of the service, `inetd` will start a pr
1414

1515
This way, `inetd` will run the server programs as they are needed by spawning multiple processes to service multiple network connections.
1616

17-
A kdb+ server can work under `inetd` to provide a private server for each connection established on a designated port. (Since V2.4.)
17+
A kdb+ server can work under `inetd` to provide a private server for each connection established on a designated port.
1818

1919
For Windows you might be able to have kdb+ run under `inetd` using Cygwin.
2020

docs/ref/dotq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -662,7 +662,7 @@ q).Q.ff[src] enlist `sym`ratioA`ratioB!3#1
662662
.Q.fk x
663663
```
664664

665-
Where `x` is a table column, returns `` ` `` if the column is not a foreign key or `` `tab`` if the column is a foreign key into `tab`.(Since V2.4t)
665+
Where `x` is a table column, returns `` ` `` if the column is not a foreign key or `` `tab`` if the column is a foreign key into `tab`.
666666

667667

668668
## `fmt` (format)
@@ -676,7 +676,7 @@ Where
676676
- `x` and `y` are integer atoms
677677
- `z` is a numeric atom
678678

679-
returns `z` as a string of length `x`, formatted to `y` decimal places. (Since V2.4)
679+
returns `z` as a string of length `x`, formatted to `y` decimal places.
680680

681681
```q
682682
q).Q.fmt[6;2]each 1 234

docs/ref/dotz.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -891,7 +891,6 @@ q)m[1;1]:0
891891
## `.z.W` (handles)
892892

893893
Dictionary of IPC handles with the number of bytes waiting in their output queues.
894-
<!-- (Since V2.5 2008.12.31.) In V2.6 this was changed to a list of bytes per handle, see [Changes in V2.6](../releases/ChangesIn2.6.md#zw) -->
895894

896895
```q
897896
q)h:hopen ...

docs/ref/take.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ q)trade
6060
+`time`sym`price`size!(`time$();`symbol$();`float$();`int$())
6161
```
6262

63-
Where `x` is a vector, returns a matrix or higher-dimensional array; `count x` gives the number of dimensions. (Since V2.3)
63+
Where `x` is a vector, returns a matrix or higher-dimensional array; `count x` gives the number of dimensions.
6464

6565
```q
6666
q)2 5#"!"

0 commit comments

Comments
 (0)