Skip to content

Commit 1b06322

Browse files
committed
Add missing full stop in docs.
1 parent 51c25b5 commit 1b06322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/camera/camera_platform_interface/lib/src/platform_interface/camera_platform.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ abstract class CameraPlatform extends PlatformInterface {
8181
/// Starts a video recording
8282
///
8383
/// If no [file] parameter is provided, the recording will be saved to a new file in a temporary location.
84-
///
84+
///
8585
/// The file is written on the flight as the video is being recorded.
8686
/// If a file already exists at the path for the provided file instance, an error will be thrown.
8787
/// The file can be read as soon as [stopVideoRecording] returns it.
8888
Future<XFile> startVideoRecording(int cameraId, { XFile file }) {
8989
throw UnimplementedError('startVideoRecording() is not implemented.');
9090
}
9191

92-
/// Stops the video recording and returns the file where it was saved
92+
/// Stops the video recording and returns the file where it was saved.
9393
Future<XFile> stopVideoRecording(int cameraId) {
9494
throw UnimplementedError('stopVideoRecording() is not implemented.');
9595
}

0 commit comments

Comments
 (0)