fix syntax error in getting started documentation
Created by: caljess599
Rails.application.routes.draw do
namespace :admin do
# Add dashboard for your models here
resources :customers, # <== please remove this comma!
resources :orders
root to: "customers#index" # <--- Root route
end
end
commas between lines not correct here