From 5cd457d5657050353919d496fef8d38f915331fa Mon Sep 17 00:00:00 2001 From: Austin Letson Date: Sat, 5 Oct 2024 09:27:31 -0400 Subject: [PATCH] Fix minor typo (#1673) --- docs/src/miller-programming-language.md | 2 +- docs/src/miller-programming-language.md.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/miller-programming-language.md b/docs/src/miller-programming-language.md index f8d2f027b..e5da65233 100644 --- a/docs/src/miller-programming-language.md +++ b/docs/src/miller-programming-language.md @@ -209,7 +209,7 @@ So, take this sum/count example as an indication of the kinds of things you can Also inspired by [AWK](https://en.wikipedia.org/wiki/AWK), the Miller DSL has the following special [**context variables**](reference-dsl-variables.md#built-in-variables): * `FILENAME` -- the filename the current record came from. Especially useful in things like `mlr ... *.csv`. -* `FILENUM` -- similarly, but integer 1,2,3,... rather than filenam.e +* `FILENUM` -- similarly, but integer 1,2,3,... rather than filename. * `NF` -- the number of fields in the current record. Note that if you assign `$newcolumn = some value` then `NF` will increment. * `NR` -- starting from 1, counter of how many records processed so far. * `FNR` -- similar, but resets to 1 at the start of each file. diff --git a/docs/src/miller-programming-language.md.in b/docs/src/miller-programming-language.md.in index eb5702f3b..624a0dc9c 100644 --- a/docs/src/miller-programming-language.md.in +++ b/docs/src/miller-programming-language.md.in @@ -94,7 +94,7 @@ So, take this sum/count example as an indication of the kinds of things you can Also inspired by [AWK](https://en.wikipedia.org/wiki/AWK), the Miller DSL has the following special [**context variables**](reference-dsl-variables.md#built-in-variables): * `FILENAME` -- the filename the current record came from. Especially useful in things like `mlr ... *.csv`. -* `FILENUM` -- similarly, but integer 1,2,3,... rather than filenam.e +* `FILENUM` -- similarly, but integer 1,2,3,... rather than filename. * `NF` -- the number of fields in the current record. Note that if you assign `$newcolumn = some value` then `NF` will increment. * `NR` -- starting from 1, counter of how many records processed so far. * `FNR` -- similar, but resets to 1 at the start of each file.