Skip to content

Typos in code block in Docs > 5. Defining schemas > 5.2 #827

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
nikitakhutorni opened this issue Mar 20, 2024 · 1 comment
Closed

Typos in code block in Docs > 5. Defining schemas > 5.2 #827

nikitakhutorni opened this issue Mar 20, 2024 · 1 comment

Comments

@nikitakhutorni
Copy link

Description of issue

The code block modifies authorship and illustration relations; however those were previously defined as authoring and illustrating.

Previous code block:

define
contribution sub relation,
    relates work,
    relates contributor;
authoring sub contribution;
editing sub contribution;
illustrating sub contribution;

Following affected code block:

define
authorship relates author as contributor;
editing relates editor as contributor;
illustration relates illustrator as contributor;

The rest of the article also uses authoring and illustrating relationships.

Affected docs article

https://typedb.com/docs/learn/5-defining-schemas/5.2-defining-type-hierarchies

Suggested solution

Change code block content to the following:

authoring relates author as contributor;
editing relates editor as contributor;
illustrating relates illustrator as contributor;
@james-whiteside
Copy link
Contributor

Good catch, many thanks! Fixed in e1b0e05.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants