Skip to content

Commit a13e2d8

Browse files
committed
fix links
1 parent 1a95842 commit a13e2d8

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Foo(bd.Bitfield):
3939
This defines a bitfield with three fields: `a` and `b` are 4-bit unsigned
4040
integers, and `c` is a 1-byte (8-bit) string:
4141

42-
![Bitfield Diagram](https://kylehusmann.com/bydantic/assets/example_foo.svg)
42+
![Bitfield Diagram](https://bydantic.kylehusmann.com/assets/example_foo.svg)
4343

4444
<!--
4545
@@ -98,15 +98,15 @@ print(bar2) # Bar(d=[Foo(a=0, b=1, c='x'), Foo(a=2, b=3, c='y')], e=42)
9898
```
9999

100100
This just scratches the surface of what Bydantic can do... continue reading
101-
[the docs](https://kylehusmann.com/bydantic/getting-started) for more info.
101+
[the docs](https://bydantic.kylehusmann.com/getting-started) for more info.
102102

103103
## Features
104104

105-
- [Field type primitives](https://kylehusmann.com/bydantic/field-type-reference#field-type-primitives)
105+
- [Field type primitives](https://bydantic.kylehusmann.com/field-type-reference#field-type-primitives)
106106
(e.g. `int_field`, `str_field`, `bytes_field`, etc.)
107-
- [Field type combinators](https://kylehusmann.com/bydantic/field-type-reference#field-type-combinators)
107+
- [Field type combinators](https://bydantic.kylehusmann.com/field-type-reference#field-type-combinators)
108108
(e.g. `mapped_field`, `list_field`, `dynamic_field`, etc.)
109-
- [Global serialization / deserialization context](https://kylehusmann.com/bydantic/global-context/)
109+
- [Global serialization / deserialization context](https://bydantic.kylehusmann.com/global-context/)
110110
- Clear error messages for serialization / deserialization failures, even when
111111
fields are deeply nested
112112

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Foo(bd.Bitfield):
4545
This defines a bitfield with three fields: `a` and `b` are 4-bit unsigned
4646
integers, and `c` is a 1-byte (8-bit) string:
4747

48-
![Bitfield Diagram](https://kylehusmann.com/bydantic/assets/example_foo.svg)
48+
![Bitfield Diagram](https://bydantic.kylehusmann.com/assets/example_foo.svg)
4949

5050
<!--
5151
@@ -104,15 +104,15 @@ print(bar2) # Bar(d=[Foo(a=0, b=1, c='x'), Foo(a=2, b=3, c='y')], e=42)
104104
```
105105

106106
This just scratches the surface of what Bydantic can do... continue reading
107-
[the docs](https://kylehusmann.com/bydantic/getting-started) for more info.
107+
[the docs](https://bydantic.kylehusmann.com/getting-started) for more info.
108108

109109
## Features
110110

111-
- [Field type primitives](https://kylehusmann.com/bydantic/field-type-reference#field-type-primitives)
111+
- [Field type primitives](https://bydantic.kylehusmann.com/field-type-reference#field-type-primitives)
112112
(e.g. `int_field`, `str_field`, `bytes_field`, etc.)
113-
- [Field type combinators](https://kylehusmann.com/bydantic/field-type-reference#field-type-combinators)
113+
- [Field type combinators](https://bydantic.kylehusmann.com/field-type-reference#field-type-combinators)
114114
(e.g. `mapped_field`, `list_field`, `dynamic_field`, etc.)
115-
- [Global serialization / deserialization context](https://kylehusmann.com/bydantic/global-context/)
115+
- [Global serialization / deserialization context](https://bydantic.kylehusmann.com/global-context/)
116116
- Clear error messages for serialization / deserialization failures, even when
117117
fields are deeply nested
118118

0 commit comments

Comments
 (0)