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

docs: Some small fixes #3988

Merged
merged 1 commit into from
Jun 27, 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 docs/manual/export-tscn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Objects support the following property:

* string ``resPath`` (required)

The ``resPath`` property takes the form of 'res://<pbject path>.tscn' and must
The ``resPath`` property takes the form of 'res://<object path>.tscn' and must
be set to the path of the Godot object you wish to replace the object with.
Objects without this property set will not be exported.

Expand Down
6 changes: 3 additions & 3 deletions docs/scripting-doc/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1051,10 +1051,10 @@ declare class TiledObject {
setProperty(name: string, value: TiledObjectPropertyValue): void;

/**
* Sets the value of an object's property identified the given \a path
* to \a value.
* Sets the value of an object's property identified by the given path
* to the given value.
*
* The \a path is a list of property names, where each name identifies
* The path is a list of property names, where each name identifies
* a member of the previous member's value. The last name in the list
* identifies the property to set.
*
Expand Down