Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix codespell path and spelling errors #9811

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Linter checks
run: |
bash _tools/format.sh
codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt -S tutorials/i18n/locales.rst {about,community,development,getting_started,tutorials}/**/*.rst
codespell -I _tools/codespell-ignore.txt -x _tools/codespell-ignore-lines.txt -S tutorials/i18n/locales.rst {about,community,contributing,getting_started,tutorials}/**/*.rst
# Use dummy builder to improve performance as we don't need the generated HTML in this workflow.
- name: Sphinx build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ exported from other tools such as Maya.
**FBX**

- **Importer** Which import method is used. ubfx handles fbx files as fbx files.
FBX2glTF converts FBX files to glTF on import and requires additonal setup.
FBX2glTF converts FBX files to glTF on import and requires additional setup.
FBX2glTF is not recommended unless you have a specific rason to use it over
ufbx or working with a different file format.
- **Allow Geometry Helper Nodes** enables or disables geometry helper nodes
Expand Down
2 changes: 1 addition & 1 deletion tutorials/scripting/c_sharp/c_sharp_global_classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ will let you create and load instances of this type easily.

.. warning::

The Godot editor will hide these custom classes with names that beging with the prefix
The Godot editor will hide these custom classes with names that begin with the prefix
"Editor" in the 'Create New Node' or 'Create New Scene' dialog windows. The classes
are available for instantiation at runtime via their class names, but are
automatically hidden by the editor windows along with the built-in editor nodes used
Expand Down
3 changes: 2 additions & 1 deletion tutorials/scripting/gdextension/gdextension_cpp_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -348,11 +348,12 @@ When building for iOS, package the module as a static `.xcframework`, you can us
following commands to do so:

::

# compile simulator and device modules
scons arch=universal ios_simulator=yes platform=ios target=<target>
scons arch=arm64 ios_simulator=no platform=ios target=<target>

# assembe xcframeworks
# assemble xcframeworks
xcodebuild -create-xcframework -library demo/bin/libgdexample.ios.<target>.a -library demo/bin/libgdexample.ios.<target>.simulator.a -output demo/bin/libgdexample.ios.<target>.xcframework
xcodebuild -create-xcframework -library godot-cpp/bin/libgodot-cpp.ios.<target>.arm64.a -library godot-cpp/bin/libgodot-cpp.ios.<target>.universal.simulator.a -output demo/bin/libgodot-cpp.ios.<target>.xcframework

Expand Down
2 changes: 1 addition & 1 deletion tutorials/troubleshooting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ in the Editor Settings (**Network > Debug > Remote Port**). The default is

On Windows, when loading the project for the first time after the PC is turned on,
Windows Defender will cause the filesystem cache validation on project startup
to take significantly longer. This is especially noticable in projects with a
to take significantly longer. This is especially noticeable in projects with a
large number of files. Consinder adding the project folder to the list of exclusions
by going to Virus & threat protection > Virus & threat protection settings >
Add or remove exclusions.
Expand Down