Skip to content

Commit f5d3a19

Browse files
authored
Merge pull request #684 from dart-lang/srawlins-patch-1
Fix doc comment references with backticks
2 parents 5f4f945 + 0c199df commit f5d3a19

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)