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

enh(matlab) add "arguments" keyword and fix "enumeration" #2619

Merged
merged 3 commits into from
Jun 29, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ New themes:

- *Gradient Light* by [Samia Ali]()

Language Improvements:

- enh(matlab) Add new R2019b `arguments` keyword and fix `enumeration` keyword (#2619) [Andrew Janke][]

[Andrew Janke]: https://github.com/apjanke
[Samia Ali]: https://github.com/samiaab1990


## Version 10.1.1

Fixes:
Expand Down
2 changes: 1 addition & 1 deletion src/languages/matlab.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function(hljs) {
name: 'Matlab',
keywords: {
keyword:
'break case catch classdef continue else elseif end enumerated events for function ' +
'arguments break case catch classdef continue else elseif end enumeration events for function ' +
'global if methods otherwise parfor persistent properties return spmd switch try while',
built_in:
'sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan ' +
Expand Down