فهرست منبع

Merge pull request #2827 from anoadragon453/anoa/caps

Capitalize beginning of note
Nathan Lovato 6 سال پیش
والد
کامیت
e895ca68ee
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      tutorials/3d/fps_tutorial/part_one.rst

+ 1 - 1
tutorials/3d/fps_tutorial/part_one.rst

@@ -427,7 +427,7 @@ The second reason is because we do not want the cursor to leave the game window.
 the game window there could be instances where the player clicks outside the window, and then the game
 would lose focus. To assure neither of these issues happens, we capture the mouse cursor.
 
-.. note:: see :ref:`Input documentation <class_Input>` for the various mouse modes. We will only be using
+.. note:: See :ref:`Input documentation <class_Input>` for the various mouse modes. We will only be using
           ``MOUSE_MODE_CAPTURED`` and ``MOUSE_MODE_VISIBLE`` in this tutorial series.
 
 _________