In file NetworkAPI.swift there is a typo at line 28:
// yes, explicit unwinding, if we fail here, it might as well be the end of the world!
The correct text should be:
// yes, explicit unwrapping, if we fail here, it might as well be the end of the world!
In file NetworkAPI.swift there is a typo at line 28:
// yes, explicit unwinding, if we fail here, it might as well be the end of the world!
The correct text should be:// yes, explicit unwrapping, if we fail here, it might as well be the end of the world!