I'am getting stupied error CS80025. Please help

using UnityEngine;
using System.Collections;

public class Player : MonoBehaviour {

	// Use this for initialization
	void Start () {

		//player spawn point
		//This is where the player is going to spawn
	
	}
	
	// Update is called once per frame
	void Update () {
		transform.Translate(Vector3.right);

this is really annoying every time i write even a line of code i get an error. i have just started learning c# and im trying to code a 2d character move script.

From the code you posted, you’re missing 2 closing brackets “}” - one after your Update and one at the end of your file.

public class Player : MonoBehaviour
{
  void Start ()
  {

  }
 
  void Update ()
  {
    transform.Translate(Vector3.right);
  }
}

Should be good.