MilesCranmer commited on
Commit
cb832ca
1 Parent(s): ec6c97a

Fix list enumeration in docs

Browse files
Files changed (1) hide show
  1. docs/backend.md +0 -2
docs/backend.md CHANGED
@@ -8,11 +8,9 @@ PySR gives you access to everything in SymbolicRegression.jl, but there are some
8
  Generally you can do this as follows:
9
 
10
  1. Clone a copy of the backend:
11
-
12
  ```
13
  git clone https://github.com/MilesCranmer/SymbolicRegression.jl
14
  ```
15
-
16
  2. Edit the source code in `src/` to your requirements:
17
  - The documentation for the backend is given [here](https://astroautomata.com/SymbolicRegression.jl/dev/).
18
  - Throughout the package, you will often see template functions which typically use a symbol `T` (such as in the string `where {T<:Real}`). Here, `T` is simply the datatype of the input data and stored constants, such as `Float32` or `Float64`. Writing functions in this way lets us write functions generic to types, while still having access to the specific type specified at compilation time.
 
8
  Generally you can do this as follows:
9
 
10
  1. Clone a copy of the backend:
 
11
  ```
12
  git clone https://github.com/MilesCranmer/SymbolicRegression.jl
13
  ```
 
14
  2. Edit the source code in `src/` to your requirements:
15
  - The documentation for the backend is given [here](https://astroautomata.com/SymbolicRegression.jl/dev/).
16
  - Throughout the package, you will often see template functions which typically use a symbol `T` (such as in the string `where {T<:Real}`). Here, `T` is simply the datatype of the input data and stored constants, such as `Float32` or `Float64`. Writing functions in this way lets us write functions generic to types, while still having access to the specific type specified at compilation time.