diff --git a/Pool/SingletonObjectPooler.cs b/Pool/SingletonObjectPool.cs similarity index 100% rename from Pool/SingletonObjectPooler.cs rename to Pool/SingletonObjectPool.cs diff --git a/README.md b/README.md index 2cbe66e..9e302d2 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ public class EnemySpawner : MonoBehaviour { for (var i = 0; i < spawnCount; i++) { - var spawnPosition = transform.position + (Vector3)Random.insideUnitCircle \* spawnRadius; + var spawnPosition = transform.position + (Vector3)Random.insideUnitCircle * spawnRadius; SingletonObjectPool.Instance.Spawn(transform).transform.position = spawnPosition; } }