diff options
Diffstat (limited to 'src/msg.fbs')
-rw-r--r-- | src/msg.fbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msg.fbs b/src/msg.fbs index 458f5f437..c630fec9d 100644 --- a/src/msg.fbs +++ b/src/msg.fbs @@ -19,7 +19,7 @@ union Any { ReadFile, ReadFileRes, WriteFile, - RenameSync, + Rename, Stat, StatRes, SetEnv, @@ -194,7 +194,7 @@ table WriteFile { // perm specified by https://godoc.org/os#FileMode } -table RenameSync { +table Rename { oldpath: string; newpath: string; } |