fix the sequence of parameters
diff --git a/04_holy_knight.rb b/04_holy_knight.rb
index 6f2bb1a..a4f94d2 100644
--- a/04_holy_knight.rb
+++ b/04_holy_knight.rb
@@ -2,7 +2,7 @@
 
   attr_accessor :hp, :name                    # 設定物件外部可以直接使用和修改 name 和 hp 的 attributes
 
-  def initialize(name,ap,hp)
+  def initialize(name, hp, ap)
     @name = name                              # 設定一個名為 name(名稱)的 attribute
     @hp = hp                                  # 設定一個名為 hp(生命值)的 attribute
     @ap = ap                                  # 設定一個名為 ap(攻擊值)的 attribute