Skip to content

Commit ebbb16a

Browse files
authored
Minor fixes for D client (#113)
1 parent 01a1fd9 commit ebbb16a

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

astro.config.mts

+4
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ export default defineConfig({
6565
label: 'LuaJIT client',
6666
slug: 'clients/luajit',
6767
},
68+
{
69+
label: 'D client',
70+
slug: 'clients/d',
71+
},
6872
],
6973
},
7074
],

astro/content/docs/clients/d.md

+10-6
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,21 @@ Modules hierarchy:
2020
```bash
2121
.
2222
└── source
23-
├── c
24-
│   ├── ada.d # low-level C bindings - @nogc, nothrow, @safe and betterC compatible
25-
│   └── wrapper.d # D (mangled) RAII - nothrow, @safe and betterC compatible
26-
└── package.d # by default set public wrapper.d in 'import ada_url'
27-
# (for low-level C bindings use 'import c.ada')
23+
└── ada
24+
├── c
25+
│   ├── ada.d # low-level C bindings - @nogc, nothrow, @safe and betterC compatible
26+
│   └── wrapper.d # D (mangled) RAII - @nogc, nothrow, @safe and betterC compatible
27+
└── url
28+
└── package.d # by default set public wrapper.d in 'import ada.url'
29+
# (for low-level C bindings use 'import ada.c.ada')
2830
```
2931

3032
## Usage
3133

3234
Here is an example illustrating a common usage:
3335

3436
```d
35-
import ada_url : AdaUrl, ParseOptions; // @safe, nothrow and betterC compatible
37+
import ada.url : AdaUrl, ParseOptions; // @safe, nothrow and betterC compatible
3638
import std.stdio : writeln; // need GC and throw exception
3739
3840
void main() @safe {
@@ -46,6 +48,8 @@ void main() @safe {
4648
}
4749
```
4850

51+
full example: [here](https://github.com/kassane/ada-d/tree/main/example)
52+
4953
## Resources
5054

5155
- [Source code][source-code]

0 commit comments

Comments
 (0)