Skip to content

Commit

Permalink
Corrected syntax hint for bitwise unary complement #114
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszgromada committed Jan 28, 2018
1 parent 091580d commit d5cf495
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
* @(#)BitwiseOperator.cs 4.1.0 2017-05-13
* @(#)BitwiseOperator.cs 4.2.0 2018-01-28
*
* You may use this software under the condition of "Simplified BSD License"
*
* Copyright 2010-2017 MARIUSZ GROMADA. All rights reserved.
* Copyright 2010-2018 MARIUSZ GROMADA. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
Expand Down Expand Up @@ -70,7 +70,7 @@ namespace org.mariuszgromada.math.mxparser.parsertokens {
* <a href="http://sourceforge.net/projects/janetsudoku" target="_blank">Janet Sudoku on SourceForge</a><br>
* <a href="http://bitbucket.org/mariuszgromada/janet-sudoku" target="_blank">Janet Sudoku on BitBucket</a><br>
*
* @version 4.1.0
* @version 4.2.0
*/
[CLSCompliant(true)]
public sealed class BitwiseOperator {
Expand Down Expand Up @@ -100,7 +100,7 @@ public sealed class BitwiseOperator {
/*
* BitwiseOperator - syntax.
*/
public const String COMPL_SYN = "a @~ b";
public const String COMPL_SYN = "@~a";
public const String AND_SYN = "a @& b";
public const String XOR_SYN = "a @^ b";
public const String OR_SYN = "a @| b";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*
* @(#)BitwiseOperator.java 4.1.0 2017-05-13
* @(#)BitwiseOperator.java 4.2.0 2018-01-28
*
* You may use this software under the condition of "Simplified BSD License"
*
* Copyright 2010-2017 MARIUSZ GROMADA. All rights reserved.
* Copyright 2010-2018 MARIUSZ GROMADA. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
Expand Down Expand Up @@ -70,7 +70,7 @@
* <a href="http://sourceforge.net/projects/janetsudoku" target="_blank">Janet Sudoku on SourceForge</a><br>
* <a href="http://bitbucket.org/mariuszgromada/janet-sudoku" target="_blank">Janet Sudoku on BitBucket</a><br>
*
* @version 4.1.0
* @version 4.2.0
*/
public final class BitwiseOperator {
/*
Expand Down Expand Up @@ -99,7 +99,7 @@ public final class BitwiseOperator {
/*
* BitwiseOperator - syntax.
*/
public static final String COMPL_SYN = "a @~ b";
public static final String COMPL_SYN = "@~a";
public static final String AND_SYN = "a @& b";
public static final String XOR_SYN = "a @^ b";
public static final String OR_SYN = "a @| b";
Expand Down

0 comments on commit d5cf495

Please sign in to comment.