Skip to content

Commit

Permalink
Fixing docs for NAND. Thanks @uber
Browse files Browse the repository at this point in the history
  • Loading branch information
Josef Patoprsty authored and Josef Patoprsty committed Nov 29, 2017
1 parent 45185fd commit fa9f458
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Click4 Documentation

__v12 #fbc68c1__
__v15 #6a46a47__

## 0: NOP

Expand Down Expand Up @@ -39,7 +39,7 @@ __v12 #fbc68c1__

## 5: NAND

* Info: NAND the values of registers defined by ARG1 and ARG2 and store in register defined by ARG0.
* Info: NAND the values of registers defined by ARG2 and ARG3 and store in register defined by ARG1.
* Args: 3
* Color: 182,255,0
* Sound: Note C# [Cs.wav]
Expand Down
2 changes: 1 addition & 1 deletion src/ops.lua
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ table.insert(ops,{

table.insert(ops,{
label = "NAND",
info = "NAND the values of registers defined by ARG1 and ARG2 and store in register defined by ARG0.",
info = "NAND the values of registers defined by ARG2 and ARG3 and store in register defined by ARG1.",
exe = function(self)
local a = self.registers[ self.args[2] ]
local b = self.registers[ self.args[3] ]
Expand Down

0 comments on commit fa9f458

Please sign in to comment.