Skip to content

Commit 2e401d7

Browse files
authored
Fix deprecated URLs (#2005)
1 parent 37c95d7 commit 2e401d7

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Yes!
99

1010
Start by [using the tool](README.md) and filing issues and requests.
1111

12-
See the [dartdoc API](https://pub.dartlang.org/documentation/dartdoc/latest/) docs, generated by
12+
See the [dartdoc API](https://pub.dev/documentation/dartdoc/latest/) docs, generated by
1313
dartdoc.
1414

1515
If you want to contribute, check out the [issue tracker][] and see if there's an

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For issues/details related to hosted Dart API docs, see
1515

1616
## Installing dartdoc
1717

18-
- download the [Dart SDK](https://www.dartlang.org/downloads/)
18+
- download the [Dart SDK](https://dart.dev/get-dart)
1919
- add the SDK's `bin` directory to your `PATH`
2020

2121
## Generating docs
@@ -86,7 +86,7 @@ File names are _case-sensitive_.
8686
## Writing docs
8787

8888
Check out the
89-
[Effective Dart: Documentation guide](https://www.dartlang.org/effective-dart/documentation/).
89+
[Effective Dart: Documentation guide](https://dart.dev/guides/language/effective-dart/documentation).
9090

9191
The guide covers formatting, linking, markup, and general best practices when
9292
authoring doc comments for Dart with `dartdoc`.
@@ -152,7 +152,7 @@ Unrecognized options will be ignored. Supported options:
152152
* **includeExternal**: Specify a list of library filenames to add to the list of documented libraries.
153153
* **linkTo**: For other packages depending on this one, if this map is defined those packages
154154
will use the settings here to control how hyperlinks to the package are generated.
155-
This will override the default for packages hosted on pub.dartlang.org.
155+
This will override the default for packages hosted on pub.dev.
156156
* **url**: A string indicating the base URL for documentation of this package. Ordinarily
157157
you do not need to set this in the package: consider --link-to-hosted and
158158
--link-to-sdks instead of this option if you need to build your own website with

lib/src/dartdoc_options.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
///
66
/// dartdoc's dartdoc_options.yaml configuration file follows similar loading
77
/// semantics to that of analysis_options.yaml,
8-
/// [documented here](https://www.dartlang.org/guides/language/analysis-options).
8+
/// [documented here](https://dart.dev/guides/language/analysis-options).
99
/// It searches parent directories until it finds an analysis_options.yaml file,
1010
/// and uses built-in defaults if one is not found.
1111
///

0 commit comments

Comments
 (0)