Skip to content

Commit 87f00bb

Browse files
committed
fix broken external links
1 parent b14ece5 commit 87f00bb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/behind-atom/sections/interacting-with-other-packages-via-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
}
3838
```
3939

40-
Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/cli/v7/using-npm/semver#ranges), each paired with the name of a method on the package's main module:
40+
Similarly, to consume a service, specify one or more [version _ranges_](https://docs.npmjs.com/cli/v6/using-npm/semver#ranges), each paired with the name of a method on the package's main module:
4141

4242
```json
4343
{

content/hacking-atom/sections/writing-specs.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Writing specs
55

66
We've looked at and written a few specs through the examples already. Now it's time to take a closer look at the spec framework itself. How exactly do you write tests in Atom?
77

8-
Atom uses [Jasmine](https://jasmine.github.io/1.3/introduction.html) as its spec framework. Any new functionality should have specs to guard against regressions.
8+
Atom uses [Jasmine](https://jasmine.github.io/archives/1.3/introduction) as its spec framework. Any new functionality should have specs to guard against regressions.
99

1010
#### Create a New Spec
1111

@@ -47,7 +47,7 @@ describe("when a test is written", function() {
4747

4848
##### Add One or More Expectations
4949

50-
The best way to learn about expectations is to read the [Jasmine documentation](https://jasmine.github.io/1.3/introduction.html#section-Expectations) about them. Below is a simple example.
50+
The best way to learn about expectations is to read the [Jasmine documentation](https://jasmine.github.io/archives/1.3/introduction#section-Expectations) about them. Below is a simple example.
5151

5252
```javascript
5353
describe("when a test is written", function() {
@@ -160,7 +160,7 @@ describe("fs.readdir(path, cb)", function() {
160160
})
161161
```
162162

163-
For a more detailed documentation on asynchronous tests please visit the [Jasmine documentation](https://jasmine.github.io/1.3/introduction.html#section-Asynchronous_Support).
163+
For a more detailed documentation on asynchronous tests please visit the [Jasmine documentation](https://jasmine.github.io/archives/1.3/introduction#section-Asynchronous_Support).
164164

165165
#### Running Specs
166166

0 commit comments

Comments
 (0)