Skip to content

Commit

Permalink
Fix TYPEDEF typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mewilhel committed Mar 28, 2022
1 parent fc62fca commit 538481c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/eago_optimizer/functions/nonlinear/graph/graph.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ TODO: Each graph representation is assumed to be static... so
=#

"""
$(TYPDEF)
$(TYPEDEF)
Abstract supertype for generic directed graph structure.
"""
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
$(TYPDEF)
$(TYPEDEF)
Abstract supertype used for information storage object the directed acyclic graph.
"""
Expand All @@ -17,7 +17,7 @@ function initialize!(::AbstractCache, ::AbstractDirectedGraph)
end

"""
$(TYPDEF)
$(TYPEDEF)
Abstract supertype used for attributes stored in a cache.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/eago_optimizer/functions/nonlinear/graph/node.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ATOM_TYPE_INSTANCES = instances(AtomType)
abstract type AbstractNode end

"""
$(TYPDEF)
$(TYPEDEF)
Describes connectivity and expression represented by node.
"""
Expand Down

2 comments on commit 538481c

@mewilhel
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/57433

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.0 -m "<description of version>" 538481c905ba5584fb0a051b44220e76e6c45319
git push origin v0.7.0

Please sign in to comment.