Skip to content

Commit 0c199df

Browse files
authored
Fix doc comment references with backticks
These backticks break the references.
1 parent b1312b1 commit 0c199df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgs/file/lib/src/interface/file_system.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@ abstract class FileSystem {
2424

2525
/// Returns a reference to a [Directory] at [path].
2626
///
27-
/// [path] can be either a [`String`], a [`Uri`], or a [`FileSystemEntity`].
27+
/// [path] can be either a [String], a [Uri], or a [FileSystemEntity].
2828
Directory directory(dynamic path);
2929

3030
/// Returns a reference to a [File] at [path].
3131
///
32-
/// [path] can be either a [`String`], a [`Uri`], or a [`FileSystemEntity`].
32+
/// [path] can be either a [String], a [Uri], or a [FileSystemEntity].
3333
File file(dynamic path);
3434

3535
/// Returns a reference to a [Link] at [path].
3636
///
37-
/// [path] can be either a [`String`], a [`Uri`], or a [`FileSystemEntity`].
37+
/// [path] can be either a [String], a [Uri], or a [FileSystemEntity].
3838
Link link(dynamic path);
3939

4040
/// An object for manipulating paths in this file system.

0 commit comments

Comments
 (0)