Skip to content

Commit

Permalink
update docs links to new domain
Browse files Browse the repository at this point in the history
  • Loading branch information
QuietMisdreavus committed Jun 2, 2017
1 parent 738cf30 commit 3525f92
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tried just that, to see what would happen, and I included that note in the docum
notice such holes in egg-mode documentation, please post an issue or create a pull request!

[`friendships/create`]: https://dev.twitter.com/rest/reference/post/friendships/create
[`user::follow`]: https://shiva.icesoldier.me/doc/egg_mode/user/fn.follow.html
[`user::follow`]: https://tonberry.quietmisdreavus.net/doc/egg_mode/user/fn.follow.html

## Code Contributions

Expand Down Expand Up @@ -58,7 +58,7 @@ function to load a single Twitter user][user-show] and understand that you need
something that can become a `UserID`. Thanks to rustdoc, both those types have hyperlinks to their
respective documentation where you can figure out how to get the required arguments.

[user-show]: https://shiva.icesoldier.me/doc/egg_mode/user/fn.show.html
[user-show]: https://tonberry.quietmisdreavus.net/doc/egg_mode/user/fn.show.html

This doesn't mean that absolutely everything needs to be in bare functions. Some actions, like
loading tweets from a timeline, have some explicit state to them, in the form of their cursoring
Expand All @@ -82,7 +82,7 @@ without the user having to juggle these tweet IDs for basic scenarios.
[retweeters-of]: https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids
[followers-of]: https://dev.twitter.com/rest/reference/get/followers/list
[list-ownerships]: https://dev.twitter.com/rest/reference/get/lists/ownerships
[CursorIter]: https://shiva.icesoldier.me/doc/egg_mode/cursor/struct.CursorIter.html
[CursorIter]: https://tonberry.quietmisdreavus.net/doc/egg_mode/cursor/struct.CursorIter.html

If you're adding new endpoints, check to make sure whether they follow one of these patterns. That
way, you can reuse that code and keep the library from having too many copies of the same thing. (On
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "egg-mode"
version = "0.8.1"
authors = ["QuietMisdreavus <[email protected]>"]
description = "Library to interact with the Twitter API"
documentation = "https://shiva.icesoldier.me/doc/egg_mode/"
documentation = "https://tonberry.quietmisdreavus.net/doc/egg_mode/"
repository = "https://github.com/QuietMisdreavus/twitter-rs"
keywords = ["twitter"]
categories = ["api-bindings"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ another twitter library for rust [![Build Status](https://travis-ci.org/QuietMis

[v0.8.1 Documentation][documentation] | [(Pending release documentation)][doc-dev]

[Documentation]: https://shiva.icesoldier.me/doc/egg_mode/
[doc-dev]: https://shiva.icesoldier.me/doc-dev/egg_mode/
[Documentation]: https://tonberry.quietmisdreavus.net/doc/egg_mode/
[doc-dev]: https://tonberry.quietmisdreavus.net/doc-dev/egg_mode/

This is a library for interacting with Twitter from Rust. You can see how much of the Public API is
available in the file [TODO.md]. In addition to eventually implementing the entire Public API, an
Expand Down

0 comments on commit 3525f92

Please sign in to comment.