Skip to content

Commit 3d30857

Browse files
Rename owner/group matching operations
1 parent d5f58e6 commit 3d30857

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/Streamly/Coreutils/FileTest.hs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ module Streamly.Coreutils.FileTest
5858
, isSticky
5959
, isSetUID
6060
, isSetGID
61-
, euidIsUs
62-
, egidIsUs
61+
, isOwnerEUID
62+
, isGroupEGID
6363

6464
-- ** Comparing with other files
6565
, isNewerThan
@@ -301,17 +301,17 @@ isExecutable = undefined
301301
-- Like coreutil @test -O file@
302302
--
303303
-- /Unimplemented/
304-
euidIsUs :: FileTest
305-
euidIsUs = undefined
304+
isOwnerEUID :: FileTest
305+
isOwnerEUID = undefined
306306

307307
-- | True if file exists and its group matches the effective
308308
-- group id of this process.
309309
--
310310
-- Like coreutil @test -G file@
311311
--
312312
-- /Unimplemented/
313-
egidIsUs :: FileTest
314-
egidIsUs = undefined
313+
isGroupEGID :: FileTest
314+
isGroupEGID = undefined
315315

316316
------------------------------
317317
-- Comparing with other files

0 commit comments

Comments
 (0)