[PR #182] [MERGED] Fix broken reference link in documentation. #294

Closed
opened 2026-02-27 20:24:08 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ramsayleung/rspotify/pull/182
Author: @ramsayleung
Created: 2/9/2021
Status: Merged
Merged: 2/12/2021
Merged by: @marioortizmanero

Base: masterHead: ramsay_fix_broken_link


📝 Commits (10+)

  • 1be0598 Fix broken reference link in client.rs
  • 8104cf0 Fix broken reference link in several files.
  • 51ca09e Fix broken reference link in playing.rs, playlist.rs and recommend.rs
  • a0e5396 Fix broken reference link in mod.rs, offset.rs, page.rs
  • 72a687f Fix broken reference link in device.rs and image.rs
  • ca2cec1 Fix broken reference link in context.rs
  • f7704bc Fix broken reference link in category.rs
  • 7471c4a Fix broken reference link in audio.rs
  • 01366ea Fix broken references in artist.rs
  • 983d933 Fix broken references in album.rs

📊 Changes

19 files changed (+145 additions, -145 deletions)

View changed files

📝 src/client.rs (+79 -79)
📝 src/model/album.rs (+5 -5)
📝 src/model/artist.rs (+4 -4)
📝 src/model/audio.rs (+8 -8)
📝 src/model/category.rs (+2 -2)
📝 src/model/context.rs (+4 -4)
📝 src/model/device.rs (+2 -2)
📝 src/model/enums/types.rs (+1 -1)
📝 src/model/image.rs (+1 -1)
📝 src/model/mod.rs (+4 -4)
📝 src/model/offset.rs (+1 -1)
📝 src/model/page.rs (+3 -3)
📝 src/model/playing.rs (+1 -1)
📝 src/model/playlist.rs (+6 -6)
📝 src/model/recommend.rs (+2 -2)
📝 src/model/search.rs (+6 -6)
📝 src/model/show.rs (+8 -8)
📝 src/model/track.rs (+5 -5)
📝 src/model/user.rs (+3 -3)

📄 Description

Description

Update documentation links, fixed #180

Motivation and Context

Some links used in the docs are broken, and some links are redirect to new url, so just update them to the latest one.

Dependencies

None

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)

How Has This Been Tested?

Open updated links with browser, then check if these links are ok.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ramsayleung/rspotify/pull/182 **Author:** [@ramsayleung](https://github.com/ramsayleung) **Created:** 2/9/2021 **Status:** ✅ Merged **Merged:** 2/12/2021 **Merged by:** [@marioortizmanero](https://github.com/marioortizmanero) **Base:** `master` ← **Head:** `ramsay_fix_broken_link` --- ### 📝 Commits (10+) - [`1be0598`](https://github.com/ramsayleung/rspotify/commit/1be05986eb4134f5f4672465bd9d00ed3609cd4a) Fix broken reference link in client.rs - [`8104cf0`](https://github.com/ramsayleung/rspotify/commit/8104cf0b9c209d881ebb0f7c4d5d48baaddf2325) Fix broken reference link in several files. - [`51ca09e`](https://github.com/ramsayleung/rspotify/commit/51ca09eca4fb3e55e4b6efdf8faad3b5ab5626a1) Fix broken reference link in playing.rs, playlist.rs and recommend.rs - [`a0e5396`](https://github.com/ramsayleung/rspotify/commit/a0e539626a38499c3a20d719ca6efa4ba7445eaa) Fix broken reference link in mod.rs, offset.rs, page.rs - [`72a687f`](https://github.com/ramsayleung/rspotify/commit/72a687f01259e2446950e797736857847cfcf9e7) Fix broken reference link in device.rs and image.rs - [`ca2cec1`](https://github.com/ramsayleung/rspotify/commit/ca2cec1a197f7236b31d52cd51b395933c06dd4a) Fix broken reference link in context.rs - [`f7704bc`](https://github.com/ramsayleung/rspotify/commit/f7704bcc2e0e2f59d883393c825d6c534df769c6) Fix broken reference link in category.rs - [`7471c4a`](https://github.com/ramsayleung/rspotify/commit/7471c4a29aec873271c52cc1d1340a5fb53f4e4c) Fix broken reference link in audio.rs - [`01366ea`](https://github.com/ramsayleung/rspotify/commit/01366ea5692b5fcb397b5f144e862129eff05314) Fix broken references in artist.rs - [`983d933`](https://github.com/ramsayleung/rspotify/commit/983d933773082bee47703b3b6c7cbfb3c4ee0513) Fix broken references in album.rs ### 📊 Changes **19 files changed** (+145 additions, -145 deletions) <details> <summary>View changed files</summary> 📝 `src/client.rs` (+79 -79) 📝 `src/model/album.rs` (+5 -5) 📝 `src/model/artist.rs` (+4 -4) 📝 `src/model/audio.rs` (+8 -8) 📝 `src/model/category.rs` (+2 -2) 📝 `src/model/context.rs` (+4 -4) 📝 `src/model/device.rs` (+2 -2) 📝 `src/model/enums/types.rs` (+1 -1) 📝 `src/model/image.rs` (+1 -1) 📝 `src/model/mod.rs` (+4 -4) 📝 `src/model/offset.rs` (+1 -1) 📝 `src/model/page.rs` (+3 -3) 📝 `src/model/playing.rs` (+1 -1) 📝 `src/model/playlist.rs` (+6 -6) 📝 `src/model/recommend.rs` (+2 -2) 📝 `src/model/search.rs` (+6 -6) 📝 `src/model/show.rs` (+8 -8) 📝 `src/model/track.rs` (+5 -5) 📝 `src/model/user.rs` (+3 -3) </details> ### 📄 Description ## Description Update documentation links, fixed #180 ## Motivation and Context Some links used in the docs are broken, and some links are redirect to new url, so just update them to the latest one. ## Dependencies None ## Type of change Please delete options that are not relevant. - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? Open updated links with browser, then check if these links are ok. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 20:24:08 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/rspotify#294
No description provided.