Skip to content

Commit

Permalink
Fix typo in right-rotate gate's setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Strilanc committed Jul 16, 2017
1 parent 826d3b4 commit b686996
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gates/CycleBitsGates.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ CycleBitsGates.CycleBitsFamily = Gate.buildFamily(2, 16, (span, builder) => buil
CycleBitsGates.ReverseCycleBitsFamily = Gate.buildFamily(2, 16, (span, builder) => builder.
setSerializedId(">>" + span).
setSymbol(">>>").
setSymbol("Right Rotate").
setTitle("Rotates bits upward.").
setTitle("Right Rotate").
setBlurb("Rotates bits upward.").
setDrawer(cyclePainter(true)).
setTooltipMatrixFunc(() => makeCycleBitsMatrix(-1, span)).
setActualEffectToShaderProvider(ctx => cycleBitsShader(ctx, span, -1)).
Expand Down

0 comments on commit b686996

Please sign in to comment.