Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixup! unify style
Browse files Browse the repository at this point in the history
AmaiKinono committed Jan 14, 2021
1 parent 3f962bb commit b7c2ff3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parsers/julia.c
Original file line number Diff line number Diff line change
@@ -1218,7 +1218,7 @@ static void parseModule (lexerState *lexer, vString *scope, int parent_kind)
* of "Module", and this function will take it to the end of the entity
* (whitespaces also skipped).
*/
static void parseImportEntity(lexerState *lexer, int token_type)
static void parseImportEntity (lexerState *lexer, int token_type)
{
if (lexer->cur_c == '.')
{
@@ -1256,7 +1256,7 @@ static void parseImportEntity(lexerState *lexer, int token_type)
/* using Module: symbol1, symbol2 */
/* The lexer should be at the end of "Module", and this function will take it
* to the end of the token after this expression (whitespaces also skipped). */
static void parseColonImportExpr(lexerState *lexer, int token_type)
static void parseColonImportExpr (lexerState *lexer, int token_type)
{
int symbol_role;
if (token_type == TOKEN_IMPORT)

0 comments on commit b7c2ff3

Please sign in to comment.