Depth Sounder NMEA Arduino

Ah I see where I went wrong,
so it should be as follows?

void loop()
{ 
if(depthSerial.available() > 0) {
    Serial.write(depthSerial.read());
}
}