Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dingmaotu committed Jun 22, 2020
1 parent 981394b commit c8f16bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Include/Zmq/Context.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ int zmq_ctx_shutdown(intptr_t context);
int zmq_ctx_set(intptr_t context,int option,int optval);
int zmq_ctx_get(intptr_t context,int option);
#import
class ContextHanldeManager: public HandleManager<intptr_t>
class ContextHandleManager: public HandleManager<intptr_t>
{
intptr_t create() override
{
Expand Down

1 comment on commit c8f16bf

@a2gsdev
Copy link

@a2gsdev a2gsdev commented on c8f16bf Jun 22, 2020

Choose a reason for hiding this comment

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

Hello dingmaotu!
Please, i think line 81 and 92 needs to change too.
81: class Context: public GlobalHandle<intptr_t,ContextHanldeManager>
92: Context(string shared=NULL):GlobalHandle<intptr_t,ContextHanldeManager>(shared) {}
Thank you!

Please sign in to comment.