diff --git a/src/pages/Typing/components/StartButton/index.tsx b/src/pages/Typing/components/StartButton/index.tsx
index 1c397d75cd..2c3836028d 100644
--- a/src/pages/Typing/components/StartButton/index.tsx
+++ b/src/pages/Typing/components/StartButton/index.tsx
@@ -32,7 +32,7 @@ export default function StartButton({ isLoading }: { isLoading: boolean }) {
   const { getReferenceProps, getFloatingProps } = useInteractions([hoverButton])
 
   return (
-    <Tooltip content="快捷键 Enter" className="box-content h-7 w-8 px-6 py-1">
+    <Tooltip content={`${state.isTyping ? '暂停' : '开始'} (Enter)`} className="box-content h-7 w-8 px-6 py-1">
       <div
         ref={refs.setReference}
         {...getReferenceProps()}