Skip to content

Commit

Permalink
fix links
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Aug 22, 2022
1 parent 5b2bcfd commit dd5f2a5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[![CI](https://github.com/pydantic/pydantic/workflows/CI/badge.svg?event=push)](https://github.com/pydantic/pydantic/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[![Coverage](https://coverage-badge.samuelcolvin.workers.dev/samuelcolvin/pydantic.svg)](https://github.com/pydantic/pydantic/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[![Coverage](https://coverage-badge.samuelcolvin.workers.dev/pydantic/pydantic.svg)](https://github.com/pydantic/pydantic/actions?query=event%3Apush+branch%3Amain+workflow%3ACI)
[![pypi](https://img.shields.io/pypi/v/pydantic.svg)](https://pypi.python.org/pypi/pydantic)
[![CondaForge](https://img.shields.io/conda/v/conda-forge/pydantic.svg)](https://anaconda.org/conda-forge/pydantic)
[![downloads](https://pepy.tech/badge/pydantic/month)](https://pepy.tech/project/pydantic)
[![license](https://img.shields.io/github/license/samuelcolvin/pydantic.svg)](https://github.com/pydantic/pydantic/blob/main/LICENSE)
[![license](https://img.shields.io/github/license/pydantic/pydantic.svg)](https://github.com/pydantic/pydantic/blob/main/LICENSE)

{!.version.md!}

Expand Down
2 changes: 1 addition & 1 deletion docs/usage/dataclasses.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you don't want to use _pydantic_'s `BaseModel` you can instead get the same d
`pydantic.BaseModel` is the better choice.

For more information and discussion see
[samuelcolvin/pydantic#710](https://github.com/pydantic/pydantic/issues/710).
[pydantic/pydantic#710](https://github.com/pydantic/pydantic/issues/710).

You can use all the standard _pydantic_ field types, and the resulting dataclass will be identical to the one
created by the standard library `dataclass` decorator.
Expand Down
2 changes: 1 addition & 1 deletion docs/usage/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Here `StaticFoobarModel` and `DynamicFoobarModel` are identical.
!!! warning
See the note in [Required Optional Fields](#required-optional-fields) for the distinction between an ellipsis as a
field default and annotation-only fields.
See [samuelcolvin/pydantic#1047](https://github.com/pydantic/pydantic/issues/1047) for more details.
See [pydantic/pydantic#1047](https://github.com/pydantic/pydantic/issues/1047) for more details.

Fields are defined by either a tuple of the form `(<type>, <default value>)` or just a default value. The
special key word arguments `__config__` and `__base__` can be used to customise the new model. This includes
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ theme:
logo: 'logo-white.svg'
favicon: 'favicon.png'

repo_name: samuelcolvin/pydantic
repo_name: pydantic/pydantic
repo_url: https://github.com/pydantic/pydantic
extra:
analytics:
Expand Down

0 comments on commit dd5f2a5

Please sign in to comment.