Skip to content

Commit 97bcf59

Browse files
authored
Merge pull request #63 from SpringQL/docs/clickable-link
docs: make links in comments clickable
2 parents 5704f1b + 75b569d commit 97bcf59

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

springql.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ struct SpringConfig *spring_config_default(void);
8080
* # Parameters
8181
*
8282
* - `overwrite_config_toml`: TOML format configuration to overwrite default.
83-
* See https://springql.github.io/deployment/configuration for TOML format and configuration values.
83+
* See <https://springql.github.io/deployment/configuration> for TOML format and configuration values.
8484
*
8585
* # Panics
8686
*
@@ -145,7 +145,7 @@ enum SpringErrno spring_command(const struct SpringPipeline *pipeline, const cha
145145
*
146146
* Do not call this function from threads.
147147
* If you need to pop from multiple in-memory queues using threads, use `spring_pop_non_blocking()`.
148-
* See: https://github.com/SpringQL/SpringQL/issues/125
148+
* See: <https://github.com/SpringQL/SpringQL/issues/125>
149149
*
150150
* # Returns
151151
*

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub extern "C" fn spring_config_default() -> *mut SpringConfig {
5656
/// # Parameters
5757
///
5858
/// - `overwrite_config_toml`: TOML format configuration to overwrite default.
59-
/// See https://springql.github.io/deployment/configuration for TOML format and configuration values.
59+
/// See <https://springql.github.io/deployment/configuration> for TOML format and configuration values.
6060
///
6161
/// # Panics
6262
///
@@ -157,7 +157,7 @@ pub unsafe extern "C" fn spring_command(
157157
///
158158
/// Do not call this function from threads.
159159
/// If you need to pop from multiple in-memory queues using threads, use `spring_pop_non_blocking()`.
160-
/// See: https://github.com/SpringQL/SpringQL/issues/125
160+
/// See: <https://github.com/SpringQL/SpringQL/issues/125>
161161
///
162162
/// # Returns
163163
///

0 commit comments

Comments
 (0)