From 45c051dad0e243a63608c8274b7fddd5f0b74941 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20S=C3=A9bert?= Date: Thu, 24 Aug 2023 13:11:39 +0200 Subject: [PATCH] Add `dfr` before `into df` and `into nu` (#585) It seems that the file is slightly out-of-date. --- modules/network/sockets/sockets.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/network/sockets/sockets.nu b/modules/network/sockets/sockets.nu index d134150..dc8fc26 100644 --- a/modules/network/sockets/sockets.nu +++ b/modules/network/sockets/sockets.nu @@ -28,5 +28,5 @@ export def 'java-cmd abbreviate-classpath' [] { } export def join-table [table: table, left_on: string, right_on: string] { - into df | join ($table | into df) $left_on $right_on | into nu + dfr into df | join ($table | dfr into df) $left_on $right_on | dfr into nu }