Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.dev.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ pre-commit install
## Construction of author keys

There are various source keys in CFF that can be used to convert to a target format. The code uses a pattern of first
identifiying what information is present, then summarizing this as a key, then using that key to retrieve a method which
identifying what information is present, then summarizing this as a key, then using that key to retrieve a method which
is tailored only to that specific combination of source keys. As an example of this mapping, see the setup in
https://github.com/citation-file-format/cffconvert/blob/3.0.0a0/cffconvert/behavior_shared/schemaorg_author_shared.py

Expand Down Expand Up @@ -306,7 +306,7 @@ The table below lists how the key name is constructed based what information was
## Construction of identifier keys

There are various source keys in CFF that can be used to convert to a target format. The code uses a pattern of first
identifiying what information is present, then summarizing this as a key, then using that key to retrieve a method which
identifying what information is present, then summarizing this as a key, then using that key to retrieve a method which
is tailored only to that specific combination of source keys.

Source keys:
Expand All @@ -326,7 +326,7 @@ The table below lists how the key name is constructed based what information was
## Construction of URL keys

There are various source keys in CFF that can be used to convert to a target format. The code uses a pattern of first
identifiying what information is present, then summarizing this as a key, then using that key to retrieve a method which
identifying what information is present, then summarizing this as a key, then using that key to retrieve a method which
is tailored only to that specific combination of source keys.

Source keys:
Expand Down
2 changes: 1 addition & 1 deletion src/cffconvert/lib/cff_1_3_x/zenodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def add_contributors(self):
contributors = []
for c in self.cffobj.get("contributors", []):
# contributors are generated in the same way as authors, hence just
# call ZenodoAuthor's contructor with the cff contributor object
# call ZenodoAuthor's constructor with the cff contributor object
contributor = ZenodoAuthor(c).as_dict()
contributor.update({"type": "Other"})
contributors.append(contributor)
Expand Down
Loading