$STCON=\text{{(G,s,t)|G is a directed graph with a path from s to t}}$ $Co-STCON=\text{{(G,s,t)|G is a directed graph without a path from s to t}}$
I've tried the following proof:
Let $S\in NL$, and let $S^\complement \in coNL$. ($S^\complement$ complement is $S$)
Let $M_S$ be the NDTM that solves $S$.
$x\in S \iff x\notin S^\complement$, so If I can decide membership in $S^\complement$, I can decide membership in $S$. Then I claim that $x\in S^\complement \iff(G_x,v_0,v_{acc}) \in Co-STCON$, where $G_x$ is the configuration graph of $M_S(x)$, $v_0$ is starting configuration, and $V_{acc}$ is a single accepting configuration.
The problem I have with the proof above is that it has the form $x\in S \iff (G_x,v_0,v_{acc}) \notin Co-STCON$, so I feel like I'm missing something essential here. Is it correct?