slight readme updates
diff --git a/README.md b/README.md
index 1cc9234..50e0cd3 100644
--- a/README.md
+++ b/README.md
@@ -12,13 +12,9 @@
 create, parse, and validate JWS, JWE, and JWTs.
 
 ## Notes:
-JWE is currently unimplemented, but should be completed in a week.
+JWE is currently unimplemented.
 
 ## Version 0.9:
-Currently not version 1.0 yet.
-
-The API will be 100% solidified with the 1.0 release and no API-breaking
-changes will be made without incrementing the major version number.
 
 ## Documentation
 
diff --git a/jws/jws.go b/jws/jws.go
index e84db43..3716d38 100644
--- a/jws/jws.go
+++ b/jws/jws.go
@@ -390,7 +390,7 @@
 	Compact
 )
 
-var parseJumpTable = [^uint8(0)]func([]byte, ...json.Unmarshaler) (JWS, error){
+var parseJumpTable = [^Format(0)]func([]byte, ...json.Unmarshaler) (JWS, error){
 	Unknown: Parse,
 	Flat:    ParseFlat,
 	General: ParseGeneral,