From b6e55b84985a54e650df2d7603d34272f94b880f Mon Sep 17 00:00:00 2001 From: David Kemp Date: Tue, 7 Jan 2014 12:48:22 -1100 Subject: [PATCH] Minor update to the README file --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 6278343..5fda370 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,6 @@ JavaScript library for animating quantum computations. -Please let me know if you use this library, otherwise I might loose interest in enhancing it. - Usage ----- @@ -29,7 +27,7 @@ Add an svg element to the page: Create a jsqubits object, pass it to the animatedQubits function to create an animatedQubits object, and ask it to display itself in the svg element (see also http://davidbkemp.github.io/jsqubits/ ) - var qstate = jsqubits("|101>").hadamard(0).T(0); + var qstate = jsqubits("|101>").hadamard(0).t(0); var animation = animatedQubits(qstate, {maxRadius: 50}); var svgElement = document.getElementById("mySvg");