1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
diff --git a/docs/src/fs.rst b/docs/src/fs.rst
index a390f1409..f383e5b10 100644
--- a/docs/src/fs.rst
+++ b/docs/src/fs.rst
@@ -92,9 +92,9 @@ Data types
UV_FS_READLINK,
UV_FS_CHOWN,
UV_FS_FCHOWN,
- UV_FS_LCHOWN,
UV_FS_REALPATH,
- UV_FS_COPYFILE
+ UV_FS_COPYFILE,
+ UV_FS_LCHOWN
} uv_fs_type;
.. c:type:: uv_dirent_t
diff --git a/include/uv.h b/include/uv.h
index 91451ada7..efb7b61cf 100644
--- a/include/uv.h
+++ b/include/uv.h
@@ -1141,9 +1141,9 @@ typedef enum {
UV_FS_READLINK,
UV_FS_CHOWN,
UV_FS_FCHOWN,
- UV_FS_LCHOWN,
UV_FS_REALPATH,
- UV_FS_COPYFILE
+ UV_FS_COPYFILE,
+ UV_FS_LCHOWN
} uv_fs_type;
/* uv_fs_t is a subclass of uv_req_t. */
|