I started learning Erlang from Erlang Programming (O'Reilly, 2009) and the net_kernel:connect/1 function is used in the examples to show how to connect to other nodes.
I tried to look this function up in the official documentation but net_kernel:connect/1 is not even mentioned and most of the newer sources (eg. Learn You Some Erlang) use net_kernel:connect_node/1 exclusively.
So far I've come across a couple of commands that were explicitly tagged as deprecated in the doc but there was always an advice on what to use instead. Is connect/1 kept only for backwards compatibility?
I also traced back both functions and they both are translated to net_kernel:request({connect, normal, Node}) at one point.