Skip to content

Commit fbd31df

Browse files
authored
docs: Fixed a simple typo (#337)
avalible -> available
1 parent 8109f24 commit fbd31df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_docs/the-basics/object-spawning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The .Spawn() method takes 2 parameters, both with default values, so they are op
1616
```csharp
1717
public void Spawn(Stream spawnPayload = null, bool destroyWithScene = false);
1818
```
19-
The first parameter is a System.IO.Stream and can be retrieved in the NetworkStart() to sync values once when spawning this object. Note however, that the payload data is only avalible for people that get the spawn call straight away. People that join later on won't get the payload data.
19+
The first parameter is a System.IO.Stream and can be retrieved in the NetworkStart() to sync values once when spawning this object. Note however, that the payload data is only available for people that get the spawn call straight away. People that join later on won't get the payload data.
2020

2121
The second parameter speaks for itself. If set to true, the object will be destroyed on scene switching. This can only be set inside the spawn call.
2222

0 commit comments

Comments
 (0)