Add punctuation for unterminated sentences in doc comments (#62755)
* Add punctuation for unterminated sentences in doc comments
* Addressing review nit
diff --git a/packages/flutter_tools/lib/src/device.dart b/packages/flutter_tools/lib/src/device.dart
index 8995390..c691610 100644
--- a/packages/flutter_tools/lib/src/device.dart
+++ b/packages/flutter_tools/lib/src/device.dart
@@ -557,7 +557,7 @@
String userIdentifier,
});
- /// Check if the device is supported by Flutter
+ /// Check if the device is supported by Flutter.
bool isSupported();
// String meant to be displayed to the user indicating if the device is
@@ -734,7 +734,7 @@
};
}
- /// Clean up resources allocated by device
+ /// Clean up resources allocated by device.
///
/// For example log readers or port forwarders.
Future<void> dispose();
@@ -861,7 +861,7 @@
/// The port the browser should use for its debugging protocol.
final int webBrowserDebugPort;
- /// Enable expression evaluation for web target
+ /// Enable expression evaluation for web target.
final bool webEnableExpressionEvaluation;
/// A file where the vmservice URL should be written after the application is started.
@@ -925,7 +925,7 @@
/// Stops forwarding [forwardedPort].
Future<void> unforward(ForwardedPort forwardedPort);
- /// Cleanup allocated resources, like forwardedPorts
+ /// Cleanup allocated resources, like [forwardedPorts].
Future<void> dispose();
}