From 889e35b3f3dfad610a8d948be98471acf78387fa Mon Sep 17 00:00:00 2001 From: CicadaCinema <52425971+CicadaCinema@users.noreply.github.com> Date: Tue, 3 Jan 2023 22:28:07 +0000 Subject: [PATCH] fix typos (#117592) --- dev/conductor/core/dart_test.yaml | 2 +- .../templates/plugin_ffi/linux.tmpl/CMakeLists.txt.tmpl | 4 ++-- .../templates/plugin_ffi/windows.tmpl/CMakeLists.txt.tmpl | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dev/conductor/core/dart_test.yaml b/dev/conductor/core/dart_test.yaml index ea3283fe598f..264cf319a4a8 100644 --- a/dev/conductor/core/dart_test.yaml +++ b/dev/conductor/core/dart_test.yaml @@ -1,6 +1,6 @@ # codesign_integration_test takes longer than the default timeout which is 30s # since it has to clone both the engine and framework repos, and that test is running # asynchronously. The async function is being awaited more than 30s which counts as inactivity -# The default timeout needs to be extended to accomodate codesign_integration_test +# The default timeout needs to be extended to accommodate codesign_integration_test timeout: 5m diff --git a/packages/flutter_tools/templates/plugin_ffi/linux.tmpl/CMakeLists.txt.tmpl b/packages/flutter_tools/templates/plugin_ffi/linux.tmpl/CMakeLists.txt.tmpl index a328c52e7c82..6b8415f0cbb9 100644 --- a/packages/flutter_tools/templates/plugin_ffi/linux.tmpl/CMakeLists.txt.tmpl +++ b/packages/flutter_tools/templates/plugin_ffi/linux.tmpl/CMakeLists.txt.tmpl @@ -8,7 +8,7 @@ set(PROJECT_NAME "{{projectName}}") project(${PROJECT_NAME} LANGUAGES CXX) # Invoke the build for native code shared with the other target platforms. -# This can be changed to accomodate different builds. +# This can be changed to accommodate different builds. add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared") # List of absolute paths to libraries that should be bundled with the plugin. @@ -16,7 +16,7 @@ add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DI # external build triggered from this build file. set({{projectName}}_bundled_libraries # Defined in ../src/CMakeLists.txt. - # This can be changed to accomodate different builds. + # This can be changed to accommodate different builds. $ PARENT_SCOPE ) diff --git a/packages/flutter_tools/templates/plugin_ffi/windows.tmpl/CMakeLists.txt.tmpl b/packages/flutter_tools/templates/plugin_ffi/windows.tmpl/CMakeLists.txt.tmpl index cfd21c3676ca..36a7bd32511e 100644 --- a/packages/flutter_tools/templates/plugin_ffi/windows.tmpl/CMakeLists.txt.tmpl +++ b/packages/flutter_tools/templates/plugin_ffi/windows.tmpl/CMakeLists.txt.tmpl @@ -9,7 +9,7 @@ set(PROJECT_NAME "{{projectName}}") project(${PROJECT_NAME} LANGUAGES CXX) # Invoke the build for native code shared with the other target platforms. -# This can be changed to accomodate different builds. +# This can be changed to accommodate different builds. add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DIR}/shared") # List of absolute paths to libraries that should be bundled with the plugin. @@ -17,7 +17,7 @@ add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/../src" "${CMAKE_CURRENT_BINARY_DI # external build triggered from this build file. set({{projectName}}_bundled_libraries # Defined in ../src/CMakeLists.txt. - # This can be changed to accomodate different builds. + # This can be changed to accommodate different builds. $ PARENT_SCOPE )