(Solved) accelstepper code for stepper with constant speed in 2 directions

If you are using the AccelStepper library did you ever look at the code in the only example in the library ?

 //This is an example of how you would control 1 stepper

#include <AccelStepper.h>

int motorSpeed = 9600; //maximum steps per second (about 3rps / at 16 microsteps)
int motorAccel = 80000; //steps/second/second to accelerate

int motorDirPin = 2; //digital pin 2     < ===THIS IS A DIRECTION PIN
int motorStepPin = 3; //digital pin 3

//set up the accelStepper intance
//the "1" tells it we are using a driver
AccelStepper stepper(1, motorStepPin, motorDirPin); 



void setup(){
  stepper.setMaxSpeed(motorSpeed);
  stepper.setSpeed(motorSpeed);
  stepper.setAcceleration(motorAccel);
  
  stepper.moveTo(32000); //move 32000 steps (should be 10 rev)
}

void loop(){
  
  //if stepper is at desired location
  if (stepper.distanceToGo() == 0){
    //go the other way the same amount of steps  <= "go the other way" sounds like a direction change to me.
    //so if current position is 400 steps out, go position -400
    stepper.moveTo(-stepper.currentPosition());   <= THAT LOOKS LIKE A "-"SIGN IN FRONT OF THE  "stepper.currentPosition()"
  }
  

  
  //these must be called as often as possible to ensure smooth operation
  //any delay will cause jerky motion
  stepper.run();
}