Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Jul 30, 2024
1 parent 85b118f commit d81483c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/DeveloperDocumentation/serialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ When implementing the serialization of a new type in a module that is not
a lot of helper functions (see the examples above).
To ease this process, the `@import_all_serialization_functions` macro can be used.
```@docs
@import_all_serialization_functions
Oscar.@import_all_serialization_functions
```

### Serializers
Expand Down
4 changes: 1 addition & 3 deletions src/Serialization/main.jl
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ end
################################################################################
# Utility macro
"""
@import_all_serialization_functions
Oscar.@import_all_serialization_functions
This macro imports all serialization related functions that one may need for implementing
serialization for custom types from Oscar into the current module.
Expand All @@ -395,7 +395,6 @@ macro import_all_serialization_functions()
haskey,
load_array_node,
load_node,
load_object,
load_params_node,
load_ref,
load_typed_object,
Expand All @@ -404,7 +403,6 @@ macro import_all_serialization_functions()
save_data_basic,
save_data_dict,
save_data_json,
save_object,
save_typed_object,
serialize_with_id,
serialize_with_params,
Expand Down

0 comments on commit d81483c

Please sign in to comment.