How to fix Script? error CS1525: Unexpected symbol `Internal'

I get Assets/Scriptshas/EnemyAI.cs(29,71): error CS1525: Unexpected symbol `’

using UnityEngine;
using System.Collections;

public class EnemyAI : MonoBehaviour {
	public Transform target;
	public int moveSpeed;
	public int roatationSpeed;
	
	private Transform myTransform;
	
	void Awake(){
		myTransform = transform;
	}
	
	// Use this for initialization
	void Start () {
		GameObject go = GameObject.FindGameObjectWithTag("Player");
		
		target = go.transform;
			
	
	}
	
	// Update is called once per frame
	void Update () {
		Debug.DrawLine (target.position, myTransform.position, Color.yellow);
		
		//Look at target
		myTransform.rotation = Quaternion.Slerp(myTransform.r­otation, Quaternion.LookRotation(target­.position - myTransform.position), rotationSpeed * Time.deltaTime);	
	}
}

Problem is between myTransform.rotation = Quaternion.Slerp(myTransform.r­otation, Quaternion.LookRotation(target­.position - myTransform.position), rotationSpeed * Time.deltaTime); Which is line 29 in my script, thank you for your time!

If you past your code into an word processor or editor that shows symbols, or you do a hexdump, you will find a symbol between ‘target’ and ‘.position’ on that line. Hex value is AC, and probably inserted by a word processor. The fix is to delete the line and retype it.

MSDN: Compiler Error CS1525

Perhaps you named a variable “internal” like this?

// error CS1525: Unexpected symbol `internal',
//               expecting `.', `?', `[', `<operator>', or `identifier'
float internal = 4; 

internal is a reserved keyword. Consider renaming your symbol to something else in such case.

DAMN, I spend hours, searching for answers, this fng copy paste ruin my time.
if you copy your code and paste it in other, and copy it back again to your code.
this f
error will come up.