brownplt / pyret-docs

The documentation for Pyret.
9 stars 18 forks source link

example in "extracting columns from tables" incorrect #7

Closed joerromano closed 8 years ago

joerromano commented 8 years ago

On the Tables page, under "Extracting Columns from Tables" (currently section 3.22.7), there is the following example:

name-list = select name from my-table end
check:
  name-list is [list: "Bob", "Alice", "Eve"]
end

The "select" in this code example should say "extract" as shown below:

name-list = extract name from my-table end
check:
  name-list is [list: "Bob", "Alice", "Eve"]
end
jpolitz commented 8 years ago

Thanks! Fixed.