Skip to content

Commit

Permalink
Usa linguagem mais inclusiva: autor -> autoria (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuducos authored Nov 12, 2024
1 parent 8dd656a commit 46c4472
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ seguintes arquivos:
- [LICENSE.md](/LICENSE.md): Detalhes sobre a licença do projeto. Ela define o que você pode e não
pode fazer com o código. Em geral, a licença permite que você use, modifique e distribua o código,
desde que siga os termos definidos. No entanto, é importante verificar se há restrições
específicas, como atribuição de crédito ao autor original ou proibição de uso comercial.
específicas, como atribuição de crédito da autoria original ou proibição de uso comercial.

Certifique-se de ler esses arquivos com atenção antes de contribuir. Se tiver qualquer dificuldade
ou dúvida, não hesite em nos perguntar utilizando o [GitHub Discussions][github-discussions]. Toda
Expand Down
4 changes: 2 additions & 2 deletions curadoria_coletiva/all_materials.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# auto-generated file, please don't change it

- titulo: Introdução ao Python
autor: Jane Doe
autoria: Jane Doe
url: https://example.com/python-course
assuntos:
- python
Expand All @@ -22,7 +22,7 @@
texto: Adoro o capítulo 5! Ele explica conceitos complexos de forma clara e acessível.
file_path: materials/example.yml
- titulo: Avançando com Python
autor: John Smith
autoria: John Smith
url: https://example.com/advanced-python
assuntos:
- desenvolvimento web
Expand Down
6 changes: 3 additions & 3 deletions curadoria_coletiva/material_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Material(BaseModel):
Attributes:
titulo (str): The title of the material.
autor (Optional[str]): The author, creator, or organization responsible for the material.
autoria (Optional[str]): The author, creator, or organization responsible for the material.
url (Optional[str]): A URL link to the source of the material, if available.
assuntos (set of SubjectEnum): A set of subjects covered in the material.
formato (FormatEnum): The format of the material, such as video, blog post, or book.
Expand All @@ -49,7 +49,7 @@ class Material(BaseModel):
"""

titulo: str
autor: str
autoria: str
url: str
assuntos: conset(SubjectEnum, min_length=1)
formato: FormatEnum
Expand All @@ -67,7 +67,7 @@ class Config:
json_schema_extra = {
"example": {
"titulo": "Introdução ao Python",
"autor": "Jane Doe",
"autoria": "Jane Doe",
"url": "https://example.com/python-course",
"assuntos": {SubjectEnum.PYTHON, SubjectEnum.PROGRAMMING_BASICS},
"formato": FormatEnum.VIDEO,
Expand Down
4 changes: 2 additions & 2 deletions curadoria_coletiva/material_template.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Título do material educacional
- titulo:

# Autor, criador ou organização responsável pelo material
autor:
# Pessoa ou organização responsável pelo material
autoria:

# Link para a fonte do material
url:
Expand Down
2 changes: 1 addition & 1 deletion curadoria_coletiva/materials/example.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- titulo: Introdução ao Python
autor: Jane Doe
autoria: Jane Doe
url: https://example.com/python-course
assuntos:
- python
Expand Down
2 changes: 1 addition & 1 deletion curadoria_coletiva/materials/example2.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- titulo: Avançando com Python
autor: John Smith
autoria: John Smith
url: https://example.com/advanced-python
assuntos:
- desenvolvimento web
Expand Down

0 comments on commit 46c4472

Please sign in to comment.