From 47161153881bce83fbd3e525df4d6ff587c1c37d Mon Sep 17 00:00:00 2001 From: Sean Riley Hawkins Date: Tue, 31 May 2022 17:36:15 +0200 Subject: [PATCH] fix: convert function to camel case --- .../app_flowy/lib/workspace/application/doc/share_bloc.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart b/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart index 4e17619b9f..e24411fdc0 100644 --- a/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart +++ b/frontend/app_flowy/lib/workspace/application/doc/share_bloc.dart @@ -40,14 +40,14 @@ class DocShareBloc extends Bloc { return value; } - Future get _ExportDir async { + Future get _exportDir async { Directory documentsDir = await appFlowyDocumentDirectory(); return documentsDir; } Future get _localPath async { - final dir = await _ExportDir; + final dir = await _exportDir; return dir.path; }