Skip to content
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

fix typos #219

Merged
merged 1 commit into from
Nov 1, 2023
Merged
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ show_msession() # open the default MATLAB session interactive window
get_msession_visiblity() # get the session's visibility state
hide_msession() # hide the default MATLAB session interactive window

# similarily
# similarly
s = MSession()
show_msession(s)
get_msession_visiblity(a)
Expand Down
2 changes: 1 addition & 1 deletion src/MATLAB.jl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if Sys.iswindows()
# Engine clients are not loaded and unloaded repeatedly
# see: https://www.mathworks.com/matlabcentral/answers/305877-what-is-the-primary-message-table-for-module-77

# initialization is delayed untill first call to MSession
# initialization is delayed until first call to MSession
const persistent_msession_ref = Ref{MSession}()
const persistent_msession_assigned = Ref(false)

Expand Down
Loading