This Unity message uses an incorrect method case.
using UnityEngine;
class Camera : MonoBehaviour
{
private void UPDATE()
{
}
}Fix message case:
using UnityEngine;
class Camera : MonoBehaviour
{
private void Update()
{
}
}A code fix is offered for this diagnostic to automatically apply this change.