Skip to content

Commit ac3d54d

Browse files
authored
[pt-BR] fix statement about lines output type (#766)
which is a `list`, not a `table`. This should fix it in the Brazilian Portuguese translation. See PR #764 for a fix of the same problem in the English original and in the German translation. I don't really know Portuguese. I simply looked up the term to use in https://www.nushell.sh/pt-BR/book/tipos_de_dados.html#listas (and in https://www.nushell.sh/pt-BR/book/tipos_de_dados.html#dados-estruturados where it occurs in singular, albeit not referring to the data type), so it's quite possible I'm introducing grammatical errors.
1 parent 57e819f commit ac3d54d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pt-BR/book/carregando_dados.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ A primeira coisa que queremos fazer ao carregar o arquivo é trabalhar com ele l
7575
---+------------------------------
7676
```
7777

78-
Podemos notar que estamos lidando com linhas porque voltamos a ver uma tabela. Nosso próximo passo é tentar dividir as linhas em algo um pouco mais útil. Para isso, vamos usar o comando `split column`. Como o nome implica, esse comando nos dá uma forma de dividir em colunas uma string delimitada. Informamos qual é o delimitador e o comando faz o resto:
78+
Podemos notar que estamos lidando com linhas porque voltamos a ver uma lista. Nosso próximo passo é tentar dividir as linhas em algo um pouco mais útil. Para isso, vamos usar o comando `split column`. Como o nome implica, esse comando nos dá uma forma de dividir em colunas uma string delimitada. Informamos qual é o delimitador e o comando faz o resto:
7979

8080
```shell
8181
> open people.txt | lines | split column "|"

0 commit comments

Comments
 (0)