diff --git a/zero-input-framework.el b/zero-input-framework.el
index 57e714f0576f7d927868b12aac641893a2d6f516..78404b35227a73e8842b0d8a33d75d86ad2a0d7c 100644
--- a/zero-input-framework.el
+++ b/zero-input-framework.el
@@ -132,7 +132,7 @@ If item is not in lst, return nil."
 
 ;; zero-input-el version
 (defvar zero-input-version nil "Zero package version.")
-(setq zero-input-version "2.0.2")
+(setq zero-input-version "2.0.3")
 
 ;; FSM state
 (defconst zero-input--state-im-off 'IM-OFF)
@@ -162,7 +162,7 @@ this is used to help with buffer focus in/out events")
 In full-width mode, commit ascii char will insert full-width char if there is a
 corresponding full-width char.  This full-width char map is
 independent from punctuation map.  You can change this via
-`zero-input-toggle-full-width-mode'")
+`zero-input-toggle-full-width'")
 (defvar-local zero-input-punctuation-level zero-input-punctuation-level-basic
   "Punctuation level.
 
@@ -633,7 +633,7 @@ N is the argument passed to `self-insert-command'."
     ;; build zero-input-prefix-map
     (defvar zero-input-prefix-map (define-prefix-command 'zero-input-prefix-map))
     (let ((bindings '(("," zero-input-cycle-punctuation-level)
-		      ("." zero-input-toggle-full-width-mode))))
+		      ("." zero-input-toggle-full-width))))
       (dolist (b bindings)
 	(define-key zero-input-prefix-map (car b) (cadr b))))
     ;; mount zero-input-prefix-map in C-c , prefix key.
diff --git a/zero-input.el b/zero-input.el
index bbb1fbcb3b266b64e93997c73f41ed52ba3c1139..8c635737cd75a1770e1f7463c3c439ba2af13d82 100644
--- a/zero-input.el
+++ b/zero-input.el
@@ -12,7 +12,7 @@
 ;; See the License for the specific language governing permissions and
 ;; limitations under the License.
 
-;; Version: 2.0.2
+;; Version: 2.0.3
 ;; URL: https://gitlab.emacsos.com/sylecn/zero-el
 ;; Package-Requires: ((emacs "24.3") (s "1.2.0"))
 
@@ -243,7 +243,7 @@ If item is not in lst, return nil."
 
 ;; zero-input-el version
 (defvar zero-input-version nil "Zero package version.")
-(setq zero-input-version "2.0.2")
+(setq zero-input-version "2.0.3")
 
 ;; FSM state
 (defconst zero-input--state-im-off 'IM-OFF)
@@ -273,7 +273,7 @@ this is used to help with buffer focus in/out events")
 In full-width mode, commit ascii char will insert full-width char if there is a
 corresponding full-width char.  This full-width char map is
 independent from punctuation map.  You can change this via
-`zero-input-toggle-full-width-mode'")
+`zero-input-toggle-full-width'")
 (defvar-local zero-input-punctuation-level zero-input-punctuation-level-basic
   "Punctuation level.
 
@@ -744,7 +744,7 @@ N is the argument passed to `self-insert-command'."
     ;; build zero-input-prefix-map
     (defvar zero-input-prefix-map (define-prefix-command 'zero-input-prefix-map))
     (let ((bindings '(("," zero-input-cycle-punctuation-level)
-		      ("." zero-input-toggle-full-width-mode))))
+		      ("." zero-input-toggle-full-width))))
       (dolist (b bindings)
 	(define-key zero-input-prefix-map (car b) (cadr b))))
     ;; mount zero-input-prefix-map in C-c , prefix key.