Skip to content

Commit f1455e4

Browse files
committed
Fix minor link formatting issue in docs
1 parent e920668 commit f1455e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ pub enum PathFragment {
6363
///
6464
/// This tries to be as close to the spec as possible.
6565
///
66-
/// Spec: [https://github.com/facebook/graphql/blob/master/spec/Section%207%20--%20Response.md]
66+
/// [Spec](https://github.com/facebook/graphql/blob/master/spec/Section%207%20--%20Response.md)
6767
#[derive(Debug, Serialize, Deserialize, PartialEq)]
6868
pub struct GraphQLError {
6969
/// The human-readable error message. This is the only required field.
@@ -78,7 +78,7 @@ pub struct GraphQLError {
7878
///
7979
/// This will generally be used with the `ResponseData` struct from a derived module.
8080
///
81-
/// Spec: [https://github.com/facebook/graphql/blob/master/spec/Section%207%20--%20Response.md]
81+
/// [Spec](https://github.com/facebook/graphql/blob/master/spec/Section%207%20--%20Response.md)
8282
#[derive(Debug, Serialize, Deserialize)]
8383
pub struct GraphQLResponse<Data> {
8484
/// The absent, partial or complete response data.

0 commit comments

Comments
 (0)