@cryptotaxi247 / kubo / commits / d3c20b021

chore: fix function name (#10481)

Signed-off-by: shenpengfeng <xinhangzhou@icloud.com>

shenpengfeng committed Aug 21, 2024 at 22:00 UTC d3c20b021049c8f14be8ab4e9eb6b2b386e27bc0
1 file changed +1 -1
fuse/mount/fuse.go
+1 -1
@@ -102,7 +102,7 @@ func (m *mount) mount() error {
102 return nil
103 }
104
105 -// umount is called exactly once to unmount this service.
105 +// unmount is called exactly once to unmount this service.
106 // note that closing the connection will not always unmount
107 // properly. If that happens, we bring out the big guns
108 // (mount.ForceUnmountManyTimes, exec unmount).