Skip to content

Commit 1c6b8d1

Browse files
committed
doc: Fixed broken links in markdown docs.
1 parent 473c21e commit 1c6b8d1

File tree

3 files changed

+5
-22
lines changed

3 files changed

+5
-22
lines changed

doc/BUILD.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -91,20 +91,3 @@ Delete the `./build` directory.
9191
```bash
9292
$ rm -fR build # or your otherwise selected CMake build directory.
9393
```
94-
95-
## Building Rust Code
96-
97-
You may find that you need to build the Rust code directly.
98-
99-
From the root:
100-
101-
```
102-
cargo build --release --features ffi
103-
```
104-
105-
Note that this will build binaries in `./target` rather than `./build`.
106-
107-
This will also refresh the `line_sender.h` header file.
108-
109-
Call this command if you want to integrate the library within your project and
110-
you use a build system other than CMake.

doc/DEPENDENCY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ We do not ship binaries.
1212

1313
Instead you should rely on a copy of the code sync'ed up
1414
to the latest annotated tag. You can find the list of tags on
15-
the [project's GitHub tag page](tags) or by listing the annotated tags in git
15+
the [project's GitHub tag page](../tags) or by listing the annotated tags in git
1616
from a checked out copy of the code.
1717

1818
```bash
@@ -115,7 +115,7 @@ Grafting can be accomplished via either one of:
115115
Pick either approach to obtain a copy of this library's code into
116116
the `deps/c-questdb-client` directory within your git repository.
117117

118-
Once done, [configuring `CMakeLists.txt`](cmakeliststxt_with_subdirectory)
118+
Once done, [configuring `CMakeLists.txt`](#cmakeliststxt-with-subdirectory)
119119
config is the same.
120120

121121
### Grafting via `git subtree` (recommended)

doc/SECURITY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ to secure the connection for any public-facing servers.
2222
TLS can be used independently and provides no authentication itself.
2323

2424
The `tls_certs` directory of this project contains tests certificates, its
25-
[README](tls_certs/README.md) page describes generating your own certs.
25+
[README](../tls_certs/README.md) page describes generating your own certs.
2626

2727
For API usage:
2828
* Rust: `SenderBuilder`'s [`auth`](https://docs.rs/questdb-rs/2.1.0/questdb/ingress/struct.SenderBuilder.html#method.auth)
2929
and [`tls`](https://docs.rs/questdb-rs/2.1.0/questdb/ingress/struct.SenderBuilder.html#method.tls) methods.
30-
* C: [examples/line_sender_c_example_auth.c](examples/line_sender_c_example_auth.c)
31-
* C++: [examples/line_sender_cpp_example_auth.cpp](examples/line_sender_cpp_example_auth.cpp)
30+
* C: [examples/line_sender_c_example_auth.c](../examples/line_sender_c_example_auth.c)
31+
* C++: [examples/line_sender_cpp_example_auth.cpp](../examples/line_sender_cpp_example_auth.cpp)

0 commit comments

Comments
 (0)