Commit 5ad67975 authored by Devon Carew's avatar Devon Carew

Merge pull request #1312 from devoncarew/tools_tweaks

name and grammar tweaks
parents eb632698 87e6b9a0
...@@ -8,10 +8,10 @@ import 'dart:io'; ...@@ -8,10 +8,10 @@ import 'dart:io';
import 'package:archive/archive.dart'; import 'package:archive/archive.dart';
import 'package:path/path.dart' as path; import 'package:path/path.dart' as path;
import 'build_configuration.dart'; import 'base/logging.dart';
import 'base/os.dart'; import 'base/os.dart';
import 'base/process.dart'; import 'base/process.dart';
import 'base/logging.dart'; import 'build_configuration.dart';
String _getNameForHostPlatform(HostPlatform platform) { String _getNameForHostPlatform(HostPlatform platform) {
switch (platform) { switch (platform) {
......
...@@ -7,14 +7,13 @@ import "dart:io"; ...@@ -7,14 +7,13 @@ import "dart:io";
import "package:path/path.dart" as path; import "package:path/path.dart" as path;
import "../runner/flutter_command_runner.dart";
import "../runner/flutter_command.dart";
import "../artifacts.dart"; import "../artifacts.dart";
import "../runner/flutter_command.dart";
import "../runner/flutter_command_runner.dart";
class IOSCommand extends FlutterCommand { class IOSCommand extends FlutterCommand {
final String name = "ios"; final String name = "ios";
final String description = "Commands for creating and updating Flutter iOS projects.";
final String description = "Commands for creating and updating Flutter iOS projects";
final bool requiresProjectRoot = true; final bool requiresProjectRoot = true;
......
...@@ -9,7 +9,7 @@ import '../runner/flutter_command.dart'; ...@@ -9,7 +9,7 @@ import '../runner/flutter_command.dart';
class LogsCommand extends FlutterCommand { class LogsCommand extends FlutterCommand {
final String name = 'logs'; final String name = 'logs';
final String description = 'Show logs for running Sky apps.'; final String description = 'Show logs for running Flutter apps.';
LogsCommand() { LogsCommand() {
argParser.addFlag('clear', argParser.addFlag('clear',
......
...@@ -8,8 +8,8 @@ import 'dart:io'; ...@@ -8,8 +8,8 @@ import 'dart:io';
import 'package:path/path.dart' as path; import 'package:path/path.dart' as path;
import 'artifacts.dart'; import 'artifacts.dart';
import 'build_configuration.dart';
import 'base/process.dart'; import 'base/process.dart';
import 'build_configuration.dart';
class Compiler { class Compiler {
Compiler(this._path); Compiler(this._path);
......
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
import 'dart:async'; import 'dart:async';
import 'package:mockito/mockito.dart';
import 'package:flutter_tools/src/commands/daemon.dart'; import 'package:flutter_tools/src/commands/daemon.dart';
import 'package:mockito/mockito.dart';
import 'package:test/test.dart'; import 'package:test/test.dart';
import 'src/mocks.dart'; import 'src/mocks.dart';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment